Compare commits
No commits in common. "c3fe78040b110ad8dd429975af15aa42386f14ec" and "b474c68a5ffd220376dc8088643a2b82cb7410ee" have entirely different histories.
c3fe78040b
...
b474c68a5f
8 changed files with 6 additions and 62 deletions
|
@ -1,6 +0,0 @@
|
||||||
+++
|
|
||||||
title = "Was geht?"
|
|
||||||
weight = 9
|
|
||||||
template = "blog.html"
|
|
||||||
+++
|
|
||||||
# Die neusten Neuigkeiten
|
|
|
@ -1,3 +0,0 @@
|
||||||
+++
|
|
||||||
title = "Neuigkeiten"
|
|
||||||
+++
|
|
|
@ -1,16 +0,0 @@
|
||||||
+++
|
|
||||||
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.
|
|
|
@ -1,9 +0,0 @@
|
||||||
+++
|
|
||||||
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.
|
|
|
@ -1,18 +0,0 @@
|
||||||
{% 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,7 +1,10 @@
|
||||||
{% extends "page.html" %}
|
{% extends "index.html" %}
|
||||||
|
|
||||||
|
{% block title %}
|
||||||
|
<title>{{ page.title }} - {{ config.title }}</title>
|
||||||
|
{% endblock title %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{{ page.content | safe }}
|
|
||||||
{% set anleitungen = get_section(path="how-to/_index.md") %}
|
{% set anleitungen = get_section(path="how-to/_index.md") %}
|
||||||
{% for page in anleitungen.pages %}
|
{% for page in anleitungen.pages %}
|
||||||
<li>
|
<li>
|
||||||
|
|
|
@ -22,9 +22,6 @@
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
{% block title %}
|
|
||||||
<title>{{ config.title }}</title>
|
|
||||||
{% endblock title %}
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="center">
|
<div class="center">
|
||||||
|
@ -65,7 +62,7 @@
|
||||||
<p>
|
<p>
|
||||||
mail [at] reudnetz [dot] org<br />
|
mail [at] reudnetz [dot] org<br />
|
||||||
</p>
|
</p>
|
||||||
<button class="open-zammad-chat">Klicke hier um mit uns zu chatten.</button>
|
<button class="open-zammad-chat">Chatte mit sexy Nerd aus deiner Umgebung (7km)</button>
|
||||||
{% endblock seitenleiste %}
|
{% endblock seitenleiste %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,9 +1,5 @@
|
||||||
{% extends "index.html" %}
|
{% extends "index.html" %}
|
||||||
|
|
||||||
{% block title %}
|
|
||||||
<title>{{ page.title }} - {{ config.title }}</title>
|
|
||||||
{% endblock title %}
|
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{{ page.content | safe }}
|
{{ page.content | safe }}
|
||||||
{% endblock content %}
|
{% endblock content %}
|
||||||
|
|
Loading…
Reference in a new issue