commit d964cc11eca8d6f73e0e7d3e027ccd88c8fab9f9 Author: Fijxu Date: Fri Jan 17 23:32:57 2025 -0300 in development webpage diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..af6dfd4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +public +resources \ No newline at end of file diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..25b6752 --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,5 @@ ++++ +date = '{{ .Date }}' +draft = true +title = '{{ replace .File.ContentBaseName "-" " " | title }}' ++++ diff --git a/assets/sass/main.scss b/assets/sass/main.scss new file mode 100644 index 0000000..e2504fb --- /dev/null +++ b/assets/sass/main.scss @@ -0,0 +1,40 @@ +* { + // outline: 1px blue solid; +} + +html { + background-color: #111111; + color: #f2f2f2; +} + +body { + a { + color: rgb(255, 176, 227); + } + width: 60vw; + margin: 0px auto; + font-family: sans-serif; + h1 { + text-align: center; + } + .warning { + color: rgb(222, 119, 217); + } +} + +footer { + text-align: center; + width: 60vw; + img { + max-width: 100%; + height: auto; + } +} + +.fourofour { + text-align: center; + img { + position: relative; + width: 70%; + } +} diff --git a/content/_donate.md b/content/_donate.md new file mode 100644 index 0000000..e0f2618 --- /dev/null +++ b/content/_donate.md @@ -0,0 +1,6 @@ +--- +title: Donate +--- + +a +sdsadsadsadsad \ No newline at end of file diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..4d7d97a --- /dev/null +++ b/content/_index.md @@ -0,0 +1,46 @@ +--- +title: nadeko.net +--- + +# nadeko.net + +Hi, I'm *Fijxu*, the owner and sole admin of nadeko.net. I am dedicated to hosting privacy-focused services (and various other services) to the internet. Those services are mainly hosted for myself, but it doesn't make sense for me to host privacy-focused services just for myself, so most of them are also open to the public. + +Most of the privacy-focused services (and heavy services) are hosted on my selfhosted server at Chile (since I'm from Chile of course), but some of them are also hosted on other servers. + +nadeko.net is entirely backed by donators (for now). If you find the services useful for you, feel free to donate [here](/donate) + +
+ +Warning: Before you consider using my services on a daily basis, take into account that services marked with (Self-Hosted) may go down at any time because they are hosted with my own home Internet. +
+
+ +This page is on development, so some things may be missing. +
+ +## Privacy Focused Services + +- [Invidious](https://inv.nadeko.net) (Self-hosted) +- [Matrix (Synapse)](https://matrix.nadeko.net) (Self-hosted, Relayed, Registration Closed for everyone) +- [4get](https://4get.nadeko.net) (Self-hosted, Relayed) +- [Rimgo](https://ri.nadeko.net) (Self-hosted, Relayed) +- [Privatebin](https://pbin.nadeko.net) (Self-hosted, Relayed) +- [Quetre](https://quetre.nadeko.net) +- [SearxNG](https://search.nadeko.net) +- [Etesync](https://quetre.nadeko.net) + +*Relayed means that the service is being relayed trough a another server that I own. This is for availability purposes since I have a dynamic IP. If my IP changes, Self-hosted services marked as Relayed, should be up again in less than ~30 seconds. There is no need to wait for DNS to propagate the new IP address of the self-hosted server.* + +## Misc Services + +- [Forgejo](https://git.nadeko.net) (Self-hosted) +- [IRC Bouncer](https://znc.nadeko.net) +- [Temporary Media Uploader](https://ayaya.beauty) +- [Twitch Russia Proxy for TTVLOLv1](https://twitch.nadeko.net) +- [Moe Counter](https://count.ayaya.beauty) +- [keygenmusic.tk b11 Mirror](https://keygenmusic.nadeko.net) + +## Incoming services + +- Notesnook + Monograph: Selfhosted https://notesnook.com/ and https://monogr.ph/ to publish notes to the internet. \ No newline at end of file diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..49c74b7 --- /dev/null +++ b/hugo.toml @@ -0,0 +1,5 @@ +baseURL = 'https://nadeko.net' +languageCode = 'en-us' +title = 'nadeko.net' +[markup.goldmark.renderer] + unsafe = true # Allow HTML in md files \ No newline at end of file diff --git a/layouts/404.html b/layouts/404.html new file mode 100644 index 0000000..7b85dca --- /dev/null +++ b/layouts/404.html @@ -0,0 +1,9 @@ +{{ define "main" }} +
+
+

404 - This doesn't exist!

+

You may want to go back

+ +
+
+{{ end }} diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html new file mode 100644 index 0000000..d998451 --- /dev/null +++ b/layouts/_default/baseof.html @@ -0,0 +1,24 @@ + + + + + {{ $style := resources.Get "sass/main.scss" | css.Sass | resources.Minify }} + + + + + {{ block "title" . }} + {{ .Site.Title }} + {{ end }} + + + + + {{ block "main" . }} + + {{ end }} +
+ {{ partial "footer" }} + + + \ No newline at end of file diff --git a/layouts/index.html b/layouts/index.html new file mode 100644 index 0000000..d3f5220 --- /dev/null +++ b/layouts/index.html @@ -0,0 +1,27 @@ +{{/* + + + + {{ $style := resources.Get "sass/main.scss" | css.Sass | resources.Minify }} + + + + + {{ .Page.Title }} + + + + + {{ .Content }} + {{ partial "footer.html" . }} + + + */}} + +{{ define "main" }} +
+
+ {{ .Content }} +
+
+{{ end }} \ No newline at end of file diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html new file mode 100644 index 0000000..e69de29 diff --git a/layouts/partials/navbar.html b/layouts/partials/navbar.html new file mode 100644 index 0000000..4f7c3e6 --- /dev/null +++ b/layouts/partials/navbar.html @@ -0,0 +1,16 @@ + \ No newline at end of file diff --git a/static/404.png b/static/404.png new file mode 100644 index 0000000..cdc586e Binary files /dev/null and b/static/404.png differ