* added new entry page

This commit is contained in:
Stephan Hadan 2024-12-27 17:54:58 +01:00
parent 6e5614763d
commit e500631b7f
13 changed files with 666 additions and 2373 deletions

19
docs/assets/js/mathjax.js Normal file
View file

@ -0,0 +1,19 @@
window.MathJax = {
tex: {
inlineMath: [["\\(", "\\)"]],
displayMath: [["\\[", "\\]"]],
processEscapes: true,
processEnvironments: true
},
options: {
ignoreHtmlClass: ".*|",
processHtmlClass: "arithmatex"
}
};
document$.subscribe(() => {
MathJax.startup.output.clearCache()
MathJax.typesetClear()
MathJax.texReset()
MathJax.typesetPromise()
})

View file

@ -0,0 +1,6 @@
document$.subscribe(function() {
var tables = document.querySelectorAll("article table:not([class])")
tables.forEach(function(table) {
new Tablesort(table)
})
})

View file

@ -0,0 +1,14 @@
document$.subscribe(() => {
const instance = new Typewriter('#typewriter', {
strings: [
'Systemadministrator',
'Site Reliability Engineer',
'DevOps Engineer',
'IT Operations Engineer',
'Informationssicherheit',
'Datenschutz',
],
autoStart: true,
loop: true,
});
})