--- /dev/null
+# The URL the site will be built for
+base_url = "https://blog.johnzone.org"
+title = "Johns Blog"
+description = "Yet another useless blog"
+generate_feed = true
+default_language = "de"
+
+# Whether to automatically compile all Sass files in the sass directory
+compile_sass = true
+
+# 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
+highlight_theme = "gruvbox-dark"
+render_emoji = true
+
+[extra]
+# Put all your custom variables here
--- /dev/null
++++
+title = "Willkommen"
++++
+# Neues Design und Framework
+
+Wordpress war wohl etwas Overkill.
+Ich versuche es jetzt mal mit [Zola](https://getzola.org).
+Unter [Blog](blog) wird der neue Inhalt zu finden sein.
+Der andere Qutsch kommt auch noch.
--- /dev/null
++++
+title = "Blog"
+sort_by = "date"
++++
+Blogeinträge.
--- /dev/null
++++
+title = "Hello World Title"
+date = 2021-10-24
++++
+# My first entry!!
+
+Testing code highlighting:
+<!-- more -->
+
+```rust,linenos
+use std::rc::Rc;
+
+pub struct LinkedList<T>
+where
+ T: Copy,
+{
+ head: Option<Rc<Node<T>>>,
+ tail: Option<Rc<Node<T>>>,
+}
+
+struct Node<T>
+where
+ T: Copy,
+{
+ data: T,
+ prev: Option<Rc<Node<T>>>,
+ next: Option<Rc<Node<T>>>,
+}
+
+impl<T> Node<T>
+where
+ T: Copy,
+{
+ fn new(data: T) -> Self {
+ Node {
+ data: data,
+ prev: None,
+ next: None,
+ }
+ }
+}
+
+
+impl<T> LinkedList<T>
+where
+ T: Copy,
+{
+ pub fn new() -> Self {
+ LinkedList {
+ head: None,
+ tail: None,
+ }
+ }
+
+ pub fn push_back(&mut self, data: T) {
+ let mut node = Node::new(data);
+ if self.head.is_none() {
+ let noderef = Rc::new(node);
+ self.head = Some(noderef.clone());
+ self.tail = Some(noderef.clone());
+ return;
+ }
+ node.prev = Some(self.tail.as_ref().unwrap().clone());
+ self.tail = Some(Rc::new(node));
+ }
+
+ pub fn pop(&mut self) -> Option<T> {
+ if self.tail.is_none() {
+ return None;
+ }
+ let value = self.tail.as_ref().unwrap().clone();
+ if value.prev.is_some() {
+ let mut prev = value.prev.as_ref().unwrap();
+ prev.deref().next = None;
+ self.tail = Some(prev.clone());
+ } else {
+ self.tail = None;
+ }
+ Some(value.data)
+ }
+}
+```
--- /dev/null
++++
+title = "Second"
+date = 2022-01-31
++++
+
+Dies ist der zweite Artikel, um zu testen, ob das einigermaßen gut aussieht...
+<!-- more -->
--- /dev/null
++++
+title = "Qt and C++"
+sort_by = "title"
++++
--- /dev/null
++++
+title = "Programmieren"
+sort_by = "weight"
++++
+Hier werden nach Sprachen sortiert einige snippets und Helferlein erscheinen, die ich zum Lernen oder zum Gebrauch geschrieben habe
--- /dev/null
++++
+title = "001 - Linked List 01"
+date = "2022-01-31"
++++
+Um etwas rust zu lernen, versuche ich eine vermeintlich leichte Übung.
+Eine doppelt verkettete Liste mit mindestens push- und pop-Operationen an beiden Enden.
+
+<!-- more -->
+Dies gestaltet sich in rust etwas schwerer als erwartet, da nur an einer Stelle geschrieben werden kann,
+wenn an keiner Stelle mehr gelesen werden kann. Es müssen also die Verknüpfungen zu den Nachbarnodes
+in Smartpointern abgelegt werden.
--- /dev/null
++++
+title = "rust"
+sort_by = "title"
++++
--- /dev/null
+html, body {
+ color: white;
+ background-color: black;
+ height: 100%;
+ //padding: 0;
+ margin: 0;
+}
+
+
+body {
+ display: flex;
+ flex-direction: column;
+ //margin: 0 16px;
+ padding: 0 16px;
+
+}
+
+header {
+ flex-grow: 0;
+ flex-shrink: 0;
+}
+main {
+ flex-grow: 1;
+}
+
+footer {
+ flex: 0 0 80px;
+}
+
+nav#main {
+ display: flex;
+ justify-content: left;
+ flex-direction: row;
+ background-color: fuchsia;
+ padding: 4px 10px;
+}
+nav#main a {
+ background-color: aqua;
+ padding: 4px;
+ margin: 2px 16px;
+ color: black;
+}
+
+article {
+ background-color: darkslategray;
+ height: 100%;
+}
+
+article.card {
+ box-shadow: 0 4px 8px 10px rgba(255,0,255,0.2);
+ transition: 0.3s;
+ border-radius: 5px; /* 5px rounded corners */
+ padding: 4px 16px;
+ margin: 24px;
+ background-color: darkslategray;
+ width: 20%;
+}
+
+/* On mouse-over, add a deeper shadow */
+article.card:hover {
+ box-shadow: 0 8px 16px 20px rgba(255,0,255,0.2);
+}
+
+article.card h3 {
+ background-color: fuchsia;
+ padding: 4px 8px;
+}
+
+article.card time {
+ font-size: 10px;
+}
+
+article.card div {
+ //background-color: dark-grey;
+}
+
+a.nav {
+ margin: 2px 8px;
+}
+
+.subsections {
+ display: flex;
+ flex-wrap: wrap;
+ flex-direction: row;
+ justify-content: left;
+ background-color: crimson;
+ padding: 4px 10px;
+}
+
+.overview {
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: space-around;
+}
--- /dev/null
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <link rel="stylesheet" href="/main.css" />
+ <meta charset="utf-8" />
+ <title>Johns Zolatest</title>
+ </head>
+ <body>
+ <header>
+ <h1>Johns Site - base</h1>
+ <nav id="main">
+ {% set main_section = get_section(path="_index.md") %}
+ <a href="{{ main_section.permalink | safe }}">Home</a>
+ {% for ss in main_section.subsections %}
+ {% set main_sub_section = get_section(path=ss) %}
+ <a href="{{ main_sub_section.permalink | safe }}">{{ main_sub_section.title }}</a>
+ {% endfor %}
+ </nav>
+ </header>
+ <main id="content">
+ {% block content %}{% endblock %}
+ </main>
+ <aside>
+ {% block aside %}{% endblock %}
+ </aside>
+ <footer>
+ foot
+ </footer>
+ </body>
+</html>
--- /dev/null
+{% extends "base.html" %}
+
+{% block content %}
+<h2>{{ section.title }}</h2>
+{{ section.content | safe }}
+{% endblock %}
--- /dev/null
+{% extends "base.html" %}
+
+{% block content %}
+<article>
+{% set section = get_section(path=page.ancestors | last) %}
+<a href="{{ section.permalink | safe }}"><{{ section.title }}</a>
+<time>{{ page.date | date(format="%d.%m.%Y") }}</time>
+<h2>{{ page.title }}</h2>
+
+<p>{{ page.content | safe }}</p>
+</article>
+{% endblock %}
+
+{% block aside %}
+test
+{% endblock %}
--- /dev/null
+{% extends "base.html" %}
+
+{% block content %}
+<h2>{{ section.title }}</h2>
+{% set p_section = get_section(path=section.ancestors | last) %}
+<a href="{{ p_section.permalink | safe }}"><{{ p_section.title }}</a>
+{% if section.subsections | length > 0 %}
+<section class="subsections">
+ {% for sub in section.subsections %}
+ {% set subsection = get_section(path=sub) %}
+ <a class="nav" href="{{ subsection.permalink | safe }}">{{ subsection.title }}</a>
+ {% endfor %}
+</section>
+{% endif %}
+<section>{{ section.content | safe}}</section>
+<section class="overview">
+ {% for page in section.pages %}
+ <article class="card">
+ <time>{{ page.date | date(format="%d.%m.%Y") }}</time>
+ <h3><a href="{{ page.permalink | safe }}">{{ page.title }}</a></h3>
+ <div>{{ page.summary | safe }}</div>
+ </article>
+ {% endfor %}
+</section>
+{% endblock %}