mirror of
https://github.com/kennethreitz-archive/.com.git
synced 2026-06-18 06:10:58 +00:00
64 lines
1.7 KiB
HTML
64 lines
1.7 KiB
HTML
{% extends "base.html" %}
|
|
{% block title %}{{ article.title }}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<hr class="implied">
|
|
<section class="G4 GR GS" id="content">
|
|
<article class="G4 GR GS" id="content">
|
|
<header>
|
|
<h1>{{ article.title }} </h1>
|
|
<h2>
|
|
<time datetime="2009-08-31T07:52:58+00:00" pubdate="pubdate">{{ article.date.strftime('%B %d, %Y') }}</time>
|
|
by Kenneth Reitz.
|
|
</h2>
|
|
|
|
<nav>
|
|
<ul>
|
|
{% if not article == articles[-1] %}
|
|
<li><a href="/{{ articles[ articles.index(article) + 1].url}}" rel="prev">« Previous </a></li>
|
|
{% endif %}
|
|
|
|
{% if (articles.index(article) - 1) >= 0 %}
|
|
<li><a href="/{{ articles[ articles.index(article) - 1].url}}" rel="next">Next »</a></li>
|
|
{% endif %}
|
|
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
|
|
<div class="formatted">
|
|
|
|
{% if article.aside %}
|
|
<aside>
|
|
{{ article.aside }}
|
|
</aside>
|
|
{% endif %}
|
|
|
|
|
|
{{ article.content }}
|
|
</div>
|
|
|
|
<hr>
|
|
<p>Follow me on Twitter as <a href="http://twitter.com/kennethreitz">kennethreitz</a>.</p>
|
|
|
|
{% if DISQUS_SITENAME %}
|
|
<div class="comments">
|
|
<div id="disqus_thread"></div>
|
|
<script type="text/javascript">
|
|
var disqus_identifier = "{{ article.url }}";
|
|
(function() {
|
|
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
|
dsq.src = 'http://{{ DISQUS_SITENAME }}.disqus.com/embed.js';
|
|
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
|
})();
|
|
</script>
|
|
</div>
|
|
{% endif %}
|
|
|
|
|
|
</article>
|
|
</section><!-- #content.G4.GR.GS -->
|
|
|
|
{% endblock %}
|