diff --git a/_zola/config.toml b/_zola/config.toml new file mode 100644 index 0000000..b49e7b0 --- /dev/null +++ b/_zola/config.toml @@ -0,0 +1,21 @@ +# The URL the site will be built for +base_url = "/blog" +output_dir = "pub/blog" + +# Whether to automatically compile all Sass files in the sass directory +compile_sass = false + +# Whether to build a search index to be used later on by a JavaScript library +build_search_index = false + +generate_feeds = true +feed_filenames = ["atom.xml"] + +[markdown] +# Whether to do syntax highlighting +# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola +highlight_code = true + +[extra] +# Put all your custom variables here +title = "Zaydblog" \ No newline at end of file diff --git a/_zola/content/test.md b/_zola/content/test.md new file mode 100644 index 0000000..3e38166 --- /dev/null +++ b/_zola/content/test.md @@ -0,0 +1,6 @@ ++++ +title = "this is a test" +date = 2025-01-23 ++++ + +Zaydblog exists now. SUCK MY DICK PURPLEBORED FUCK YOU diff --git a/_zola/templates/index.html b/_zola/templates/index.html new file mode 100644 index 0000000..f5b27e6 --- /dev/null +++ b/_zola/templates/index.html @@ -0,0 +1,37 @@ + + + + + + + {{ config.title }} + + + {% if config.generate_feed %} + + {% endif %} + + + +
+ {% block content %} +
+ {% for page in section.pages | reverse %} +
+

+ + {{ page.title | safe }} + - {{ page.date | date(format="%Y-%m-%d") }} +

+
+ {% endfor %} +
+ {% endblock content %} +
+ + diff --git a/_zola/templates/page.html b/_zola/templates/page.html new file mode 100644 index 0000000..3de630f --- /dev/null +++ b/_zola/templates/page.html @@ -0,0 +1,10 @@ +{% extends "index.html" %} + +{% block content %} +
+

{{ page.title }}

+

{{ page.date | date(format="%Y-%m-%d") }}

+ {{ page.content | safe }} +
+ +{% endblock content %} diff --git a/_zola/theme.toml b/_zola/theme.toml new file mode 100644 index 0000000..b56a850 --- /dev/null +++ b/_zola/theme.toml @@ -0,0 +1,8 @@ +name = "Zaydtheme" +description = "man I just want a custom theme" + +tags = [] # wtf is this for +license = "GPLv3" +homepage = "https://goatse.cx" +min_version = "0.4.0" +demo = "" diff --git a/assets/css/main.css b/assets/css/main.css index 0df6c97..051bd31 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -13,6 +13,11 @@ src: url('/assets/fonts/Fira_Sans/FiraSans-Bold.woff2'); } +@font-face { + font-family: Fira Sans Light; + src: url('/assets/fonts/Fira_Sans/FiraSans-Light.woff2'); +} + body { margin-top: 2%; margin-left: 5%; @@ -86,6 +91,18 @@ main h2 { margin-bottom: 0px; } +.post-title { + margin-top: 10px; + margin-bottom: 5px; +} + +.post-date { + font-family: Fira Sans Light; + font-size: 20px; + margin-top: 5px; + margin-bottom: 5px; +} + main p { margin-top: 5px; } diff --git a/assets/images/badges/software/kde.gif b/assets/images/badges/software/kde.gif new file mode 100644 index 0000000..a11c3a7 Binary files /dev/null and b/assets/images/badges/software/kde.gif differ diff --git a/assets/images/badges/software/linuxnow.gif b/assets/images/badges/software/linuxnow.gif new file mode 100644 index 0000000..f3d39b1 Binary files /dev/null and b/assets/images/badges/software/linuxnow.gif differ diff --git a/blog.html b/blog.html deleted file mode 100644 index 0fb2d9d..0000000 --- a/blog.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - Zaydsite NOW! - - - -
-
-

Blog

-

Nothing here for now...

-
- - diff --git a/blog/404.html b/blog/404.html new file mode 100644 index 0000000..f8414f0 --- /dev/null +++ b/blog/404.html @@ -0,0 +1,3 @@ + +404 Not Found +

404 Not Found

diff --git a/blog/atom.xml b/blog/atom.xml new file mode 100644 index 0000000..18eb3ca --- /dev/null +++ b/blog/atom.xml @@ -0,0 +1,29 @@ + + + + + + Zola + 2025-01-23T00:00:00+00:00 + /blog/atom.xml + + this is a test + 2025-01-23T00:00:00+00:00 + 2025-01-23T00:00:00+00:00 + + + + + Unknown + + + + + + /blog/test/ + + <p>Zaydblog exists now. SUCK MY DICK PURPLEBORED FUCK YOU</p> + + + + diff --git a/blog/index.html b/blog/index.html new file mode 100644 index 0000000..d2d34b8 --- /dev/null +++ b/blog/index.html @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +
+ +
+ +
+

+ + this is a test + - 2025-01-23 +

+
+ +
+ +
+ + diff --git a/blog/robots.txt b/blog/robots.txt new file mode 100644 index 0000000..3a2e425 --- /dev/null +++ b/blog/robots.txt @@ -0,0 +1,4 @@ +User-agent: * +Disallow: +Allow: / +Sitemap: /blog/sitemap.xml diff --git a/blog/sitemap.xml b/blog/sitemap.xml new file mode 100644 index 0000000..c58035a --- /dev/null +++ b/blog/sitemap.xml @@ -0,0 +1,10 @@ + + + + /blog/ + + + /blog/test/ + 2025-01-23 + + diff --git a/blog/test/index.html b/blog/test/index.html new file mode 100644 index 0000000..44b8558 --- /dev/null +++ b/blog/test/index.html @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + +
+ +
+

this is a test

+ +

Zaydblog exists now. SUCK MY DICK PURPLEBORED FUCK YOU

+ +
+ + +
+ + diff --git a/index.html b/index.html index 644ef84..9f5dbe4 100644 --- a/index.html +++ b/index.html @@ -3,13 +3,13 @@ - Zaydsite NOW! + wanderlost

diff --git a/links.html b/links.html index a90fa49..1253ce3 100644 --- a/links.html +++ b/links.html @@ -3,13 +3,13 @@ - Zaydsite NOW! + wanderlost