Skip to content

Commit

Permalink
Deployed dae4acf with MkDocs version: 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Unknown committed Jul 10, 2024
0 parents commit ff34cb6
Show file tree
Hide file tree
Showing 84 changed files with 14,153 additions and 0 deletions.
Empty file added .nojekyll
Empty file.
416 changes: 416 additions & 0 deletions 404.html

Large diffs are not rendered by default.

27 changes: 27 additions & 0 deletions assets/custom.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
document.addEventListener('DOMContentLoaded', function() {
const images = document.querySelectorAll('.click-zoom img');

images.forEach((img) => {
const initialWidth = img.getAttribute('width') || '30%';
img.style.width = initialWidth;

const expand = img.getAttribute('data-expand') || '80%';

img.addEventListener('click', function() {
images.forEach((otherImg) => {
if (otherImg !== img && otherImg.classList.contains('expanded')) {
otherImg.style.width = otherImg.getAttribute('width') || '30%';
otherImg.classList.remove('expanded');
}
});

if (this.classList.contains('expanded')) {
this.style.width = initialWidth;
this.classList.remove('expanded');
} else {
this.style.width = expand;
this.classList.add('expanded');
}
});
});
});
Binary file added assets/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/github_plugin_template.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 29 additions & 0 deletions assets/javascripts/bundle.fe8b6f2b.min.js

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions assets/javascripts/bundle.fe8b6f2b.min.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions assets/javascripts/lunr/min/lunr.ar.min.js

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions assets/javascripts/lunr/min/lunr.da.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions assets/javascripts/lunr/min/lunr.de.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions assets/javascripts/lunr/min/lunr.du.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit ff34cb6

Please sign in to comment.