diff --git a/content/about/_index.md b/content/about/_index.md new file mode 100644 index 0000000..e6ee84b --- /dev/null +++ b/content/about/_index.md @@ -0,0 +1,5 @@ ++++ +title = "About" +template = "section.html" ++++ + diff --git a/templates/section.html b/templates/section.html new file mode 100644 index 0000000..10a741c --- /dev/null +++ b/templates/section.html @@ -0,0 +1,10 @@ +{% extends "index.html" %} + +{% block title %} + {{ section.title }} – {{ config.title }} +{% endblock title %} + +{% block content %} +

{{ section.title | safe }}

+ {{ section.content | safe }} +{% endblock content %}