summaryrefslogtreecommitdiff
path: root/templates/home.liquid
diff options
context:
space:
mode:
Diffstat (limited to 'templates/home.liquid')
-rw-r--r--templates/home.liquid17
1 files changed, 17 insertions, 0 deletions
diff --git a/templates/home.liquid b/templates/home.liquid
new file mode 100644
index 0000000..4ab18c6
--- /dev/null
+++ b/templates/home.liquid
@@ -0,0 +1,17 @@
+{% include "_header" %}
+
+<div class="content page">
+{% for page in pages %}
+ {% unless page.hidden %}
+ {% if homepage.title_italics %}
+ <i>{{homepage.title}}</i><br>
+ {% else %}
+ {{homepage.title}}<br>
+ {% endif %}
+ {{ homepage.text | newline_to_br }}
+ </a>
+ {% endunless %}
+{% endfor %}
+</div>
+
+{% include "_footer" %}