add a little blog. css still missing :D
This commit is contained in:
parent
7bdf2109a5
commit
c3fe78040b
5 changed files with 52 additions and 0 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 %}
|
Loading…
Reference in a new issue