This commit is contained in:
BENEDEK László 2024-12-06 22:43:24 +01:00
commit f73ca34525
14 changed files with 125 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
.venv
.cache
.vscode
site

BIN
docs/about/dowerx.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 473 KiB

11
docs/about/index.md Normal file
View File

@ -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)

1
docs/blog/index.md Normal file
View File

@ -0,0 +1 @@
# Blog *(mostly random thoughts)*

View File

@ -0,0 +1,15 @@
---
date:
created: 2024-12-06
tags:
- template
draft: true
---
# Title
this will show up in the preview
<!-- more -->
this is the *Continue reading* part

BIN
docs/img/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 117 KiB

7
docs/index.md Normal file
View File

@ -0,0 +1,7 @@
# Documentation and blog about things I did
- [Projects](/projects)
- [Blog](/blog)
- [Tags](/tags)
- [Links](/links)
- [About](/about)

19
docs/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()
})

7
docs/links.md Normal file
View File

@ -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

1
docs/projects/index.md Normal file
View File

@ -0,0 +1 @@
# Projects / guides

View File

@ -0,0 +1,15 @@
---
date:
created: 2024-12-06
tags:
- template
draft: true
---
# Title
this will show up in the preview
<!-- more -->
this is the *Continue reading* part

1
docs/tags.md Normal file
View File

@ -0,0 +1 @@
# Tags

41
mkdocs.yml Normal file
View File

@ -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

3
requirements.txt Normal file
View File

@ -0,0 +1,3 @@
mkdocs
mkdocs-material
mkdocs-material[imaging]