diff --git a/src/articles/de.md b/src/articles/de.md new file mode 100644 index 0000000..94068ee --- /dev/null +++ b/src/articles/de.md @@ -0,0 +1,9 @@ +# STSG + +![stsg logo](/static/assets/logo.png) + +Dies ist ein Static Site Generator mit fokus auf Nutzer:innenfreundlichkeit und Barrierearmut der generierten Seite. So kann man die Artikel in alle relevanten Sprachen übersetzen. Diese Dokumentation ist ebenfalls mit STSG gemacht. + +Die Templates sind komplet anpassbar, trotzdem empfehle ich [Bulma](https://bulma.io/) als CSS-Framework zu verwenden. + +Polizei und das Millitär jeglichen Staates dürfen dieses Tool nicht verwenden. diff --git a/src/articles/documentation/de.md b/src/articles/documentation/de.md new file mode 100644 index 0000000..c6ed0a0 --- /dev/null +++ b/src/articles/documentation/de.md @@ -0,0 +1,3 @@ +# Dokumentation + +Dies ist die Dokumentation von STSG. diff --git a/src/articles/documentation/en.md b/src/articles/documentation/en.md new file mode 100644 index 0000000..abcbccc --- /dev/null +++ b/src/articles/documentation/en.md @@ -0,0 +1,3 @@ +# documentation + +This is the documentation for stsg. diff --git a/src/static/style.css b/src/static/style.css new file mode 100644 index 0000000..7c94c75 --- /dev/null +++ b/src/static/style.css @@ -0,0 +1,13 @@ +img { + float: right; + margin: 1em; + max-width: 20%; + height: auto; +} + +/* Responsive: remove float on small screens */ +@media screen and (max-width: 768px) { + img { + max-width: 50%; + } +}