Cleanup
[wolnelektury.git] / src / infopages / templates / infopages / infopage.html
diff --git a/src/infopages/templates/infopages/infopage.html b/src/infopages/templates/infopages/infopage.html
new file mode 100644 (file)
index 0000000..5c6da35
--- /dev/null
@@ -0,0 +1,23 @@
+{% extends 'base.html' %}
+
+{% block settings %}
+  {% load title %}
+  {% title page.title %}
+{% endblock %}
+
+
+{% block main %}
+    <div class="l-article__title">
+      <h1>{{ page.title }}</h1>
+    </div>
+    <article class="l-article">
+      <div class="l-article__cols">
+        <div class="left-column">
+          {{ left_column }}
+        </div>
+        <div class="right-column">
+          {{ right_column }}
+        </div>
+      </div>
+    </article>
+{% endblock %}