diff --git a/theme/templates/base.html b/theme/templates/base.html new file mode 100644 index 0000000..313a07a --- /dev/null +++ b/theme/templates/base.html @@ -0,0 +1,36 @@ + + + + +{% block title %}{% endblock %} + + + + + +
+ +
+ +
+ +{% block content %}{% endblock %} + + + +
+ + + diff --git a/theme/templates/page.html b/theme/templates/page.html new file mode 100644 index 0000000..413ff5e --- /dev/null +++ b/theme/templates/page.html @@ -0,0 +1,17 @@ +{% extends "base.html" %} + +{% block title %}{{ page.title }}{% endblock %} + +{% block content %} + +
+

+offen is a free analysis software for websites and web applications that allows a fair handling of data. +

+ +{% block before_content %}{% endblock %} +{% block page_content %}{{ page.content }}{% endblock %} +{% block after_content %}{% endblock %} + +
+{% endblock %}