init
This commit is contained in:
commit
f73ca34525
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
.venv
|
||||||
|
.cache
|
||||||
|
.vscode
|
||||||
|
site
|
BIN
docs/about/dowerx.png
Normal file
BIN
docs/about/dowerx.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 473 KiB |
11
docs/about/index.md
Normal file
11
docs/about/index.md
Normal 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
1
docs/blog/index.md
Normal file
@ -0,0 +1 @@
|
|||||||
|
# Blog *(mostly random thoughts)*
|
15
docs/blog/posts/template.md
Normal file
15
docs/blog/posts/template.md
Normal 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
BIN
docs/img/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 117 KiB |
7
docs/index.md
Normal file
7
docs/index.md
Normal 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
19
docs/js/mathjax.js
Normal 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
7
docs/links.md
Normal 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
1
docs/projects/index.md
Normal file
@ -0,0 +1 @@
|
|||||||
|
# Projects / guides
|
15
docs/projects/posts/template.md
Normal file
15
docs/projects/posts/template.md
Normal 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
1
docs/tags.md
Normal file
@ -0,0 +1 @@
|
|||||||
|
# Tags
|
41
mkdocs.yml
Normal file
41
mkdocs.yml
Normal 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
3
requirements.txt
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
mkdocs
|
||||||
|
mkdocs-material
|
||||||
|
mkdocs-material[imaging]
|
Loading…
Reference in New Issue
Block a user