diff --git a/content/manifesto.md b/content/manifesto.md new file mode 100644 index 0000000..057086a --- /dev/null +++ b/content/manifesto.md @@ -0,0 +1,7 @@ +Title: manifesto +URL: +Date: 2010-12-03 10:20 +save_as: index.html +template: manifesto + +This is our manifesto. Enjoy! diff --git a/themes/homebrewtheme/templates/manifesto.html b/themes/homebrewtheme/templates/manifesto.html new file mode 100644 index 0000000..1626dd5 --- /dev/null +++ b/themes/homebrewtheme/templates/manifesto.html @@ -0,0 +1,50 @@ +{% extends "base.html" %} +{% block head %} + {{ super() }} + {% if article.description %} + + {% endif %} + + {% if article.tags or article.category or article.keywords %} + + {% endif %} + + +{% endblock %} + +{% block content %} +
+
+
+ {{ article.title }}
+ {% import 'translations.html' as translations with context %} + {{ translations.translations_for(article) }} +
+ + {% if article.toc %} + {{ article.toc }} + {% endif %} +
+ {{ article.content }} +
+
+{% endblock %}