12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- {% extends "base.html" %}
- {% block title %}
- {{ article.title }} - {{ super() }}
- {% endblock title %}
- {% block content %}
- <article>
- <div class="row-fluid">
- <header class="page_header span10 offset2">
- <h1><a href="/{{ article.url }}"> {{ article.title }} {%if article.subtext %} <small> {{ article.subtext }} </small> {% endif %} </a></h1>
- </header>
- </div>
- <div class="row-fluid">
- <div class="span8 offset2 article-content">
- {{ article.content }}
- <aside>
- {% for an_artcile in dates %}
- {% if an_artcile.url == article.url %}
- {% set index = loop.index0 %}
- {% if not loop.first %}
- {% set next_article = dates[index-1] %}
- {% endif %}
- {% if not loop.last %}
- {% set previous_article = dates[index+1] %}
- {% endif %}
- <nav>
- <ul class="articles_timeline">
- {% if previous_article %}
- <li class="previous_article">« <a href="/{{ previous_article.url }}" title="Previous: {{ previous_article.title }}">{{ previous_article.title }}</a></li>
- {% endif %}
- {% if next_article %}
- <li class="next_article"><a href="/{{ next_article.url }}" title="Next: {{ next_article.title }}">{{ next_article.title }}</a> »</li>
- {% endif %}
- </ul>
- </nav>
- {% endif %}
- {% endfor %}
- </aside>
- {% include 'comments.html' %}
- </div>
- <section>
- <div class="span2" style="float:right">
- {% if article.date %}
- <h4>Published</h4>
- {% set day = article.date.strftime('%d')|int %}
- <time pubdate="pubdate" datetime="{{ article.date.isoformat() }}">{{ article.date.strftime('%b') }} {{ day }} {{- article.date.strftime(', %Y') }}</time>
- {% endif %}
- {% if article.modified %}
- <h4>Last Updated</h4>
- {{ article.modified }}
- {% endif %}
- {% if article.category %}
- <h4>Category</h4>
- <a class="category-link" href="/categories.html#{{ category|replace(' ', '-')|e }}-ref">{{ article.category }}</a>
- {% endif %}
- {% if article.tags %}
- <h4>Tags</h4>
- <ul class="list-of-tags tags-in-article">
- {% for tag in article.tags %}
- <li><a href="/tags.html#{{ tag|replace(' ', '-')|e }}-ref">{{ tag }}
- {% for aTag, tagged_articles in tags if aTag == tag %}
- <span>{{ tagged_articles|count }}</span>
- {% endfor %}</a></li>
- {% endfor %}
- </ul>
- {% endif %}
- </div>
- </section>
- </div>
- </article>
- {% endblock content %}
- {% block script %}
- {{ super() }}
- {% include 'disqus_script_count.html' %}
- {% endblock script %}
|