aboutsummaryrefslogtreecommitdiffstats
path: root/notmyidea-cms/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'notmyidea-cms/templates/index.html')
-rw-r--r--notmyidea-cms/templates/index.html66
1 files changed, 66 insertions, 0 deletions
diff --git a/notmyidea-cms/templates/index.html b/notmyidea-cms/templates/index.html
new file mode 100644
index 0000000..d822249
--- /dev/null
+++ b/notmyidea-cms/templates/index.html
@@ -0,0 +1,66 @@
+{% extends "base.html" %}
+{% block content_title %}{% endblock %}
+{% block content %}
+{% if articles %}
+{% for article in articles %}
+ {% if loop.index == 1 %}
+ <section id="content" class="body">
+ <aside id="featured"><article>
+ <h1 class="entry-title"><a href="{{ SITEURL }}/{{ article.url
+ }}">{{ article.title }}</a></h1>
+ <footer class="post-info">
+ <abbr class="published" title="{{ article.date.isoformat() }}">
+ {{ article.date.strftime('%a %d %B %Y') }}
+ </abbr>
+
+ {% if article.author %}
+ <address class="vcard author">
+ By <a class="url fn" href="#">{{ article.author }}</a>
+ </address>
+ {% endif %}
+ <p>In <a href="{{ SITEURL }}/category/{{ article.category }}.html">{{ article.category }}</a>. {% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ article.slug }}.pdf">get the pdf</a>{% endif %}</p>
+ {% include 'taglist.html' %}
+ </footer><!-- /.post-info -->
+ {{ article.content }}
+ </article></aside><!-- /#featured -->
+ {% if loop.length > 1 %}
+ <h1>Other articles</h1>
+ <hr />
+ <ol id="posts-list" class="hfeed">
+ {% endif %}
+ {% else %}
+ <li><article class="hentry">
+ <header>
+ <h1><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title}}">{{ article.title }}</a></h1>
+ </header>
+
+ <div class="entry-content">
+ <footer class="post-info">
+ <abbr class="published" title="{{ article.date.isoformat() }}">
+ {{ article.date.strftime('%a %d %B %Y') }}
+ </abbr>
+
+ <address class="vcard author">
+ By <a class="url fn" href="#">{{ article.author }}</a>
+ </address>
+ <p> In <a href="{{ SITEURL }}/category/{{ article.category }}.html">{{ article.category }}</a></p>
+ {% include 'taglist.html' %}
+ <p>{% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ article.slug }}.pdf">pdf</a>{% endif %}</p>
+ </footer><!-- /.post-info -->
+ {{ article.summary }}
+ <a class="readmore" href="{{ SITEURL }}/{{ article.url }}">read more</a>
+ </div><!-- /.entry-content -->
+ </article></li>
+ {% endif %}
+{% endfor %}
+</ol><!-- /#posts-list -->
+</section><!-- /#content -->
+{% else %}
+<section id="content" class="body">
+<h2>Pages</h2>
+{% for page in PAGES %}
+ <li><a href="{{ SITEURL }}/pages/{{ page.url }}">{{ page.title }}</a></li>
+{% endfor %}
+</section>
+{% endif %}
+{% endblock content %}