From c82512f9ba12c8881c958cbb359537970dd5c110 Mon Sep 17 00:00:00 2001 From: Tasia Iso Date: Mon, 6 May 2024 13:19:03 +0200 Subject: [PATCH] g --- .gitignore | 1 + docker-compose.yml | 12 ++++++++++++ docs/index.md | 26 ++++++++++++++++++++++++++ mkdocs.yml | 18 ++++++++++++++++++ 4 files changed, 57 insertions(+) create mode 100644 .gitignore create mode 100644 docker-compose.yml create mode 100644 docs/index.md create mode 100644 mkdocs.yml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1320f90 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +site diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..98845ea --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,12 @@ +version: '3' + +services: + web: + image: nginx:mainline-alpine3.17-slim + volumes: + - ./site:/usr/share/nginx/html/~tasiaiso/:ro + ports: + - "1312:80" + environment: + # - NGINX_HOST=yaseen + - NGINX_PORT=80 diff --git a/docs/index.md b/docs/index.md new file mode 100644 index 0000000..af668e5 --- /dev/null +++ b/docs/index.md @@ -0,0 +1,26 @@ +# home + +this is my personal website. + +## me + +Tasia (they/them) + +- toucher of computers +- abolisher of governments + +## how to reach me + +- Keyoxide: `https://keyoxide.org/F8F903DAEE2CC83176C3CF4620AB0EB62F687865` +- Fediverse: [@tasiaiso@kitsunes.club](https://kitsunes.club/@tasiaiso) +- Secure Scuttlebutt: `@KdAcmKPWpiu2jXSZD8ttS0IfU2KYDJZOqy8BHumsuM4=.ed25519` +- SimpleX: [Contact address](https://simplex.chat/contact#/?v=1-4&smp=smp%3A%2F%2F1OwYGt-yqOfe2IyVHhxz3ohqo3aCCMjtB-8wn4X_aoY%3D%40smp11.simplex.im%2FZGdUasaYks8FgQdxKt5hQyNP0KLevU-O%23%2F%3Fv%3D1-2%26dh%3DMCowBQYDK2VuAyEAmnv6Lx_9akR5mNXFojrIffvqlZ6L_ANe626B6uKaNTM%253D%26srv%3D6ioorbm6i3yxmuoezrhjk6f6qgkc4syabh7m3so74xunb5nzr4pwgfqd.onion) +- Matrix: @tasiaiso:kitsunes.club +- E-Mail: (my usual username)@proton.me +- PGP: [A485B7C43AEC514B50A00F96857B004418AA6255](/static/pubkey.asc) + +--- + +This is a [motherfucking website](https://motherfuckingwebsite.com). + +Built by [mkdocs](https://www.mkdocs.org) and graciously served by [tilde.club](https://tilde.club). diff --git a/mkdocs.yml b/mkdocs.yml new file mode 100644 index 0000000..11cf439 --- /dev/null +++ b/mkdocs.yml @@ -0,0 +1,18 @@ +site_name: tasia's website +site_url: https://tilde.club/~tasiaiso/ + +theme: + name: null + custom_dir: 'theme/' + +plugins: + # - search + - minify: + minify_html: true + minify_js: true + minify_css: true + htmlmin_opts: + remove_comments: true + cache_safe: true + # css_files: + # - style.css \ No newline at end of file