commit f73ca3452562bc0b2d948159a3313c77f0e1f8a4 Author: BENEDEK László Date: Fri Dec 6 22:43:24 2024 +0100 init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..21b13b2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +.venv +.cache +.vscode +site diff --git a/docs/about/dowerx.png b/docs/about/dowerx.png new file mode 100644 index 0000000..e0faccf Binary files /dev/null and b/docs/about/dowerx.png differ diff --git a/docs/about/index.md b/docs/about/index.md new file mode 100644 index 0000000..7cb6600 --- /dev/null +++ b/docs/about/index.md @@ -0,0 +1,11 @@ +# About me + +My name is László BENEDEK. I'm studing IT Engineering at [SZTE](https://u-szeged.hu/). + +![](dowerx.png){ style="max-width: 300px; border-radius: 30px" } + +My alias on most platforms is *DowerX*. + +[GitHub](https://github.com/dowerx), +[Gitea](https://git.tek.govt.hu/dowerx), +[lacbenedek@gmail.com](email:lacbenedek@gmail.com) \ No newline at end of file diff --git a/docs/blog/index.md b/docs/blog/index.md new file mode 100644 index 0000000..d462c09 --- /dev/null +++ b/docs/blog/index.md @@ -0,0 +1 @@ +# Blog *(mostly random thoughts)* \ No newline at end of file diff --git a/docs/blog/posts/template.md b/docs/blog/posts/template.md new file mode 100644 index 0000000..5d9ecdb --- /dev/null +++ b/docs/blog/posts/template.md @@ -0,0 +1,15 @@ +--- +date: + created: 2024-12-06 +tags: + - template +draft: true +--- + +# Title + +this will show up in the preview + + + +this is the *Continue reading* part \ No newline at end of file diff --git a/docs/img/favicon.ico b/docs/img/favicon.ico new file mode 100644 index 0000000..edd1c0d Binary files /dev/null and b/docs/img/favicon.ico differ diff --git a/docs/index.md b/docs/index.md new file mode 100644 index 0000000..c395068 --- /dev/null +++ b/docs/index.md @@ -0,0 +1,7 @@ +# Documentation and blog about things I did + +- [Projects](/projects) +- [Blog](/blog) +- [Tags](/tags) +- [Links](/links) +- [About](/about) \ No newline at end of file diff --git a/docs/js/mathjax.js b/docs/js/mathjax.js new file mode 100644 index 0000000..f0d0ad5 --- /dev/null +++ b/docs/js/mathjax.js @@ -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() +}) \ No newline at end of file diff --git a/docs/links.md b/docs/links.md new file mode 100644 index 0000000..11c0dd5 --- /dev/null +++ b/docs/links.md @@ -0,0 +1,7 @@ +# Some useful or funny links + +## My stuff +- [Gitea](https://git.tek.govt.hu/dowerx) +- [Ollama](https://ollama.tek.govt.hu): selfhosted chatbot + +## YouTube videos diff --git a/docs/projects/index.md b/docs/projects/index.md new file mode 100644 index 0000000..947237e --- /dev/null +++ b/docs/projects/index.md @@ -0,0 +1 @@ +# Projects / guides \ No newline at end of file diff --git a/docs/projects/posts/template.md b/docs/projects/posts/template.md new file mode 100644 index 0000000..5d9ecdb --- /dev/null +++ b/docs/projects/posts/template.md @@ -0,0 +1,15 @@ +--- +date: + created: 2024-12-06 +tags: + - template +draft: true +--- + +# Title + +this will show up in the preview + + + +this is the *Continue reading* part \ No newline at end of file diff --git a/docs/tags.md b/docs/tags.md new file mode 100644 index 0000000..54b4e49 --- /dev/null +++ b/docs/tags.md @@ -0,0 +1 @@ +# Tags \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml new file mode 100644 index 0000000..163902a --- /dev/null +++ b/mkdocs.yml @@ -0,0 +1,41 @@ +site_name: www.tek.govt.hu +nav: + - Home: index.md + - Projects: /projects + - Blog: /blog + - Tags: tags.md + - Links: links.md + - About: /about +theme: + name: material + features: + - navigation.indexes + favicon: img/favicon.ico +markdown_extensions: + - meta + - toc + - extra + - pymdownx.highlight: + anchor_linenums: true + use_pygments: true + linenums: true + - pymdownx.superfences + - pymdownx.arithmatex: + generic: true +extra_javascript: + - js/mathjax.js + - https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js +plugins: + - search + - blog: + draft: false + draft_on_serve: false + draft_if_future_date: true + - blog: + blog_dir: projects + draft: false + draft_on_serve: false + draft_if_future_date: true + - social + - tags: + tags_file: tags.md \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..2af7749 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,3 @@ +mkdocs +mkdocs-material +mkdocs-material[imaging] \ No newline at end of file