aboutsummaryrefslogtreecommitdiffstats
path: root/graymill/templates/index.html
diff options
context:
space:
mode:
authorRahul Nair <rn@rahul-nair.com>2017-08-04 07:47:36 +0530
committerJustin Mayer <entroP@gmail.com>2017-08-03 19:17:36 -0700
commit3f9ddddab6f49eb2d2df35d47de78c0dddea3088 (patch)
tree65be5b1919d6f2feff3f94a5f7f8e6cbc575253d /graymill/templates/index.html
parent2a00d3cbf6ed7745ae3cd2f6a557bad31d4a3990 (diff)
downloadpelican-themes-3f9ddddab6f49eb2d2df35d47de78c0dddea3088.tar.gz
Add Graymill theme
Diffstat (limited to 'graymill/templates/index.html')
-rw-r--r--graymill/templates/index.html39
1 files changed, 39 insertions, 0 deletions
diff --git a/graymill/templates/index.html b/graymill/templates/index.html
new file mode 100644
index 0000000..b63d91f
--- /dev/null
+++ b/graymill/templates/index.html
@@ -0,0 +1,39 @@
+{% extends "base.html" %}
+{% block head %}
+{{ super() }}
+ <meta name="twitter:creator" content="{{ TWITTER_USERNAME }}">
+ <meta name="twitter:url" content="{{ SITEURL }}">
+ <meta name="twitter:title" content="{{ SITENAME }}">
+ <meta name="twitter:description" content="{{ SITEDESCRIPTION }}">
+
+ <!-- Facebook Meta Data -->
+ <meta property="og:title" content="{{ SITENAME }}" />
+ <meta property="og:description" content="{{ SITEDESCRIPTION }}" />
+ <meta property="og:image" content="" />
+{% endblock head %}
+{% block content_title %}{% endblock %}
+{% block content %}
+
+{% if articles %}
+ <ol>
+ {% block heading %}
+ <h3>Recent entries</h3>
+ {% endblock %}
+ {% for article in (articles_page.object_list if articles_page else articles) %}
+ <hr>
+ <li>
+ <h5><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></h5>
+ {% if DISPLAY_SUMMARY and article.summary|length > 0 %}
+ <i>{{ article.summary }}</i>
+ {% endif %}
+ By:<a href="{{ SITEURL }}/{{ article.author.url }}">{{ article.author }}</a><br />On:{{ article.locale_date }}<br />In:<a href="{{ SITEURL }}/{{ article.category.url }}" rel="bookmark" title="Permalink to {{ article.category|striptags }}">{{ article.category }}</a>
+ </li>
+ {% endfor %}
+ </ol>
+{% endif %}
+
+{% if articles_page and articles_paginator.num_pages > 1 %}
+ {% include 'pagination.html' %}
+{% endif %}
+
+{% endblock content %}