article.html 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. {% extends 'base.html' %}
  2. {% block title %}
  3. {{ article.title|striptags }} {%if article.subtitle %} - {{ article.subtitle }} {% endif %} · {{ super() }}
  4. {% endblock title %}
  5. {% block head_description %}
  6. {% if article.summary %}
  7. {{ article.summary|striptags }}
  8. {% endif %}
  9. {% endblock head_description %}
  10. {% block meta_tags_in_head %}
  11. {% if article.tags or article.category or article.keywords %}
  12. <meta name="keywords" content="{{ [article.tags|join(', '), article.category, article.keywords]|join(', ') }}" />
  13. {% endif %}
  14. {% endblock meta_tags_in_head %}
  15. {% block content %}
  16. <article>
  17. <div class="row-fluid">
  18. <header class="page-header span10 offset2">
  19. <h1><a href="{{ SITEURL }}/{{ article.url }}"> {{ article.title }} {%if article.subtitle %} <small> {{ article.subtitle }} </small> {% endif %} </a></h1>
  20. </header>
  21. </div>
  22. <div class="row-fluid">
  23. {% if article.toc %}
  24. <div class="span2 table-of-content">
  25. <nav>
  26. <h4>Contents</h4>
  27. {{ article.toc }}
  28. </nav>
  29. </div>
  30. <div class="span8 article-content">
  31. {% else %}
  32. <div class="span8 offset2 article-content">
  33. {% endif %}
  34. {{ article.content }}
  35. {% from 'comments.html' import comments with context %}
  36. {{ comments(article) }}
  37. <hr/>
  38. {% if article.prev_article or article.next_article %}
  39. <aside>
  40. <nav>
  41. <ul class="articles-timeline">
  42. {% if article.prev_article %}
  43. {% set ptitle = article.prev_article.title|striptags %}
  44. {% set pv_title = ptitle %}
  45. {%if article.prev_article.subtitle %}
  46. {% set pv_title = ptitle + ' ' + '<small>' + article.prev_article.subtitle + '</small>' %}
  47. {% set ptitle = ptitle + ' - ' + article.prev_article.subtitle %}
  48. {% endif %}
  49. <li class="previous-article">« <a href="{{ SITEURL }}/{{ article.prev_article.url }}" title="Previous: {{ ptitle }}">{{ pv_title }}</a></li>
  50. {% endif %}
  51. {% if article.next_article %}
  52. {% set ntitle = article.next_article.title|striptags %}
  53. {% set nv_title = ntitle %}
  54. {%if article.next_article.subtitle %}
  55. {% set nv_title = ntitle + ' ' + '<small>' + article.next_article.subtitle + '</small>' %}
  56. {% set ntitle = ntitle + ' - ' + article.next_article.subtitle %}
  57. {% endif %}
  58. <li class="next-article"><a href="{{ SITEURL }}/{{ article.next_article.url }}" title="Next: {{ ntitle }}">{{ nv_title }}</a> »</li>
  59. {% endif %}
  60. </ul>
  61. </nav>
  62. </aside>
  63. {% endif %}
  64. </div>
  65. <section>
  66. <div class="span2" style="float:right;font-size:0.9em;">
  67. {% if article.date %}
  68. <h4>Published</h4>
  69. {% set day = article.date.strftime('%d')|int %}
  70. <time pubdate="pubdate" datetime="{{ article.date.isoformat() }}">{{ article.date.strftime('%b') }} {{ day }} {{- article.date.strftime(', %Y') }}</time>
  71. {% endif %}
  72. {% include 'last_updated.html' %}
  73. {% if article.category|trim|count > 0 %}
  74. <h4>Category</h4>
  75. <a class="category-link" href="{{ SITEURL }}/categories.html#{{ category.slug }}-ref">{{ article.category }}</a>
  76. {% endif %}
  77. {% if article.tags and article.tags[0]|trim|count > 0 %}
  78. <h4>Tags</h4>
  79. <ul class="list-of-tags tags-in-article">
  80. {% for tag in article.tags|sort %}
  81. <li><a href="{{ SITEURL }}/tags.html#{{ tag.slug }}-ref">{{ tag }}
  82. {% for aTag, tagged_articles in tags if aTag == tag %}
  83. <span>{{ tagged_articles|count }}</span>
  84. {% endfor %}</a></li>
  85. {% endfor %}
  86. </ul>
  87. {% endif %}
  88. {% include 'social_links.html' %}
  89. {% include 'mailchimp.html' %}
  90. </div>
  91. </section>
  92. </div>
  93. </article>
  94. {% endblock content %}
  95. {% block script %}
  96. {{ super() }}
  97. {% from 'comments.html' import comments_script with context %}
  98. {{ comments_script(article) }}
  99. {% endblock script %}