commit 7e3b4d9cbc7098ff386cf5632e4eba808442bf75 Author: Froge Date: Fri Jan 31 21:17:47 2025 +1000 Initial commit diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..973b725 --- /dev/null +++ b/config.toml @@ -0,0 +1,16 @@ +# The URL the site will be built for +base_url = "https://cyberfrog.me" + +# 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 + +[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 diff --git a/content/first.md b/content/first.md new file mode 100644 index 0000000..adbe07a --- /dev/null +++ b/content/first.md @@ -0,0 +1,7 @@ ++++ +title = "My first post" +date = 2025-01-31 +updated = 2025-01-31 ++++ + +This is my first blog post testing Zola!. diff --git a/content/second.md b/content/second.md new file mode 100644 index 0000000..1799360 --- /dev/null +++ b/content/second.md @@ -0,0 +1,7 @@ ++++ +title = "My second post" +date = 2025-01-31 +updated = 2025-01-31 ++++ + +This is my second blog post. diff --git a/public/main.css b/public/main.css new file mode 100644 index 0000000..2c70a51 --- /dev/null +++ b/public/main.css @@ -0,0 +1,37 @@ +body { + font-family:Open Sans,Arial; + color:#d9d9d9; + /*color:#454545;*/ + background-color:#000000; + font-size:16px; + margin:0.5em auto; + max-width:800px; + padding:1em; + line-height: 1.4; + -webkit-hyphens:auto; + -ms-hyphens:auto; + hyphens:auto; + text-align: center; +} + +li { + margin-top: 1em; + list-style-type: none; +} + +a { + color:#00a2e7 +} + +a:visited { + color:#ca1a70; +} + +.blog-post-date { + margin: 0; + padding: 0; +} + +#blog-title { + margin-bottom: 0; +} diff --git a/static/main.css b/static/main.css new file mode 100644 index 0000000..2c70a51 --- /dev/null +++ b/static/main.css @@ -0,0 +1,37 @@ +body { + font-family:Open Sans,Arial; + color:#d9d9d9; + /*color:#454545;*/ + background-color:#000000; + font-size:16px; + margin:0.5em auto; + max-width:800px; + padding:1em; + line-height: 1.4; + -webkit-hyphens:auto; + -ms-hyphens:auto; + hyphens:auto; + text-align: center; +} + +li { + margin-top: 1em; + list-style-type: none; +} + +a { + color:#00a2e7 +} + +a:visited { + color:#ca1a70; +} + +.blog-post-date { + margin: 0; + padding: 0; +} + +#blog-title { + margin-bottom: 0; +} diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..73e9ad0 --- /dev/null +++ b/templates/base.html @@ -0,0 +1,22 @@ + + + + + + 🐸 CyberFrog + + + +

Cyberfrog blog

+
+

+ This is my blog made with Zola! +

+

It's currently running on Vultr for free with 500MB of RAM and OpenBSD :)

+
+ {% block content %} {% endblock %} +
+
+ + + diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..43f3a35 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,11 @@ +{% extends "base.html" %} + +{% block content %} + +{% endblock content %} diff --git a/templates/page.html b/templates/page.html new file mode 100644 index 0000000..6687d53 --- /dev/null +++ b/templates/page.html @@ -0,0 +1,20 @@ + + + + + + 🐸 CyberFrog + + + +

Cyberfrog blog

+
+

{{ page.title }}

+ +
+ {% block content %} {% endblock %} +
+
+ + +