From 1f3170df75d42d1cab8860080d0c254fb1d9355e Mon Sep 17 00:00:00 2001 From: kosmgco Date: Mon, 27 Feb 2017 15:26:45 +0800 Subject: update --- ops/templates/index.html | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 ops/templates/index.html (limited to 'ops/templates/index.html') diff --git a/ops/templates/index.html b/ops/templates/index.html new file mode 100644 index 0000000..f388bae --- /dev/null +++ b/ops/templates/index.html @@ -0,0 +1,44 @@ +{% extends 'base.html' %} + +{% block container %} +
+ {% include '_includes/header.html' %} +
+ +
+

+ Recent blog posts +

+
+ {% for article in articles[0:3] %} +
+

{{ article.locale_date }}

+
{{ article.title }}
+

+

{{ article.summary }}

+
+
+ More... +
+ {% endfor %} +
+
+


+
+
+
+

Links

+
+ {% for title,url in LINKS %} + {{ title }}    + {% endfor %} +
+
+
+
+{% endblock %} + + +{% block footer %} + {% include '_includes/footer.html' %} +{% endblock %} -- cgit