Compare commits
3 commits
b474c68a5f
...
c3fe78040b
Author | SHA1 | Date | |
---|---|---|---|
|
c3fe78040b | ||
|
7bdf2109a5 | ||
|
4ceb340595 |
8 changed files with 62 additions and 6 deletions
6
content/blog.md
Normal file
6
content/blog.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
+++
|
||||
title = "Was geht?"
|
||||
weight = 9
|
||||
template = "blog.html"
|
||||
+++
|
||||
# Die neusten Neuigkeiten
|
3
content/blogposts/_index.md
Normal file
3
content/blogposts/_index.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
+++
|
||||
title = "Neuigkeiten"
|
||||
+++
|
16
content/blogposts/buchhaltung.md
Normal file
16
content/blogposts/buchhaltung.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
+++
|
||||
title = "Überarbeitung unserer Buchhaltung"
|
||||
date = "2023-03-01"
|
||||
+++
|
||||
Wir sind gerade dabei eine neue Buchhaltungsperson einzuarbeiten.
|
||||
In diesem Zuge ändern und verbessern wir unsere bisherige Buchhaltung.
|
||||
|
||||
**Wundert euch also nicht, wenn ihr:**
|
||||
* Rechnungen bekommt
|
||||
* Rechnungen mehrfach bekommt
|
||||
|
||||
Sollten Zahlungen ausstehen, werden wir euch nochmal explizit daran erinnern.
|
||||
|
||||
Liebe Grüße
|
||||
|
||||
Euer Reudnetz.
|
9
content/blogposts/hello_world.md
Normal file
9
content/blogposts/hello_world.md
Normal file
|
@ -0,0 +1,9 @@
|
|||
+++
|
||||
title = "Einen Blog für die Webseite"
|
||||
date = "2023-10-27"
|
||||
+++
|
||||
Immer mehr machen sich Wunsch und Notwendigkeit breit, auch mal etwas aktuelles über die Webseite zu verbreiten.
|
||||
Nun soll hier Platz sein, für Geschichten und Einblicke in unsere Arbeit, Störungsmeldungen und Ausfalls-Forensik
|
||||
oder auch einfach ein Paar nette Worte über Dinge die uns beschäftigen.
|
||||
|
||||
Viel Vergnügen damit.
|
18
templates/blog.html
Executable file
18
templates/blog.html
Executable file
|
@ -0,0 +1,18 @@
|
|||
{% extends "page.html" %}
|
||||
|
||||
{% block content %}
|
||||
{{ page.content | safe }}
|
||||
{% set posts = get_section(path="blogposts/_index.md") %}
|
||||
|
||||
{% for post in posts.pages %}
|
||||
<h2><a href="{{ get_url(path=post.path) }}" title="{{ post.title }}">{{ post.title }}</a></h2>
|
||||
<p class="date">{{ post.date }}</p>
|
||||
<div class="post-content">
|
||||
{% if post.summary %}
|
||||
{{ post.summary | safe }}
|
||||
{% else %}
|
||||
{{ post.content | safe }}
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endfor %}
|
||||
{% endblock content %}
|
|
@ -1,10 +1,7 @@
|
|||
{% extends "index.html" %}
|
||||
|
||||
{% block title %}
|
||||
<title>{{ page.title }} - {{ config.title }}</title>
|
||||
{% endblock title %}
|
||||
{% extends "page.html" %}
|
||||
|
||||
{% block content %}
|
||||
{{ page.content | safe }}
|
||||
{% set anleitungen = get_section(path="how-to/_index.md") %}
|
||||
{% for page in anleitungen.pages %}
|
||||
<li>
|
||||
|
|
|
@ -22,6 +22,9 @@
|
|||
});
|
||||
});
|
||||
</script>
|
||||
{% block title %}
|
||||
<title>{{ config.title }}</title>
|
||||
{% endblock title %}
|
||||
</head>
|
||||
<body>
|
||||
<div class="center">
|
||||
|
@ -62,7 +65,7 @@
|
|||
<p>
|
||||
mail [at] reudnetz [dot] org<br />
|
||||
</p>
|
||||
<button class="open-zammad-chat">Chatte mit sexy Nerd aus deiner Umgebung (7km)</button>
|
||||
<button class="open-zammad-chat">Klicke hier um mit uns zu chatten.</button>
|
||||
{% endblock seitenleiste %}
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
{% extends "index.html" %}
|
||||
|
||||
{% block title %}
|
||||
<title>{{ page.title }} - {{ config.title }}</title>
|
||||
{% endblock title %}
|
||||
|
||||
{% block content %}
|
||||
{{ page.content | safe }}
|
||||
{% endblock content %}
|
||||
|
|
Loading…
Reference in a new issue