From 2d7192ba07a44bbde7c6dc2ca6a299bfaf636ae8 Mon Sep 17 00:00:00 2001 From: schweby Date: Thu, 6 Jan 2022 01:00:32 +0100 Subject: [PATCH] add basic strcture for testing sections --- content/servers/_index.md | 5 +++++ content/servers/parsons.md | 6 ++++++ templates/section.html | 15 +++++++++++++++ 3 files changed, 26 insertions(+) create mode 100644 content/servers/_index.md create mode 100644 content/servers/parsons.md create mode 100644 templates/section.html diff --git a/content/servers/_index.md b/content/servers/_index.md new file mode 100644 index 0000000..bf51996 --- /dev/null +++ b/content/servers/_index.md @@ -0,0 +1,5 @@ ++++ +title = "List of our Servers" +sort_by = "title" +page_template = "doc-page.html" ++++ diff --git a/content/servers/parsons.md b/content/servers/parsons.md new file mode 100644 index 0000000..aac528a --- /dev/null +++ b/content/servers/parsons.md @@ -0,0 +1,6 @@ ++++ +title = "parsons" ++++ + + +hier könnte content sein, aber das ist nur ein Platzhalter diff --git a/templates/section.html b/templates/section.html new file mode 100644 index 0000000..d3a223b --- /dev/null +++ b/templates/section.html @@ -0,0 +1,15 @@ +{% extends "index.html" %} + +{% block content %} +

{{ section.title }}

+

{{ section.content | safe }}

+

Pages in section

+ + +{% endblock content %}