article.html 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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. {% import '_includes/translations.html' as translations with context %}
  35. {{ translations.translations_for(article) }}
  36. {{ article.content }}
  37. {% from '_includes/comments.html' import comments with context %}
  38. {{ comments(article) }}
  39. <hr/>
  40. {% if article.prev_article or article.next_article %}
  41. <aside>
  42. <nav>
  43. <ul class="articles-timeline">
  44. {% if article.prev_article %}
  45. {% set ptitle = article.prev_article.title|striptags %}
  46. {% set pv_title = ptitle %}
  47. {%if article.prev_article.subtitle %}
  48. {% set pv_title = ptitle + ' ' + '<small>' + article.prev_article.subtitle + '</small>' %}
  49. {% set ptitle = ptitle + ' - ' + article.prev_article.subtitle %}
  50. {% endif %}
  51. <li class="previous-article">« <a href="{{ SITEURL }}/{{ article.prev_article.url }}" title="Previous: {{ ptitle }}">{{ pv_title }}</a></li>
  52. {% endif %}
  53. {% if article.next_article %}
  54. {% set ntitle = article.next_article.title|striptags %}
  55. {% set nv_title = ntitle %}
  56. {%if article.next_article.subtitle %}
  57. {% set nv_title = ntitle + ' ' + '<small>' + article.next_article.subtitle + '</small>' %}
  58. {% set ntitle = ntitle + ' - ' + article.next_article.subtitle %}
  59. {% endif %}
  60. <li class="next-article"><a href="{{ SITEURL }}/{{ article.next_article.url }}" title="Next: {{ ntitle }}">{{ nv_title }}</a> »</li>
  61. {% endif %}
  62. </ul>
  63. </nav>
  64. </aside>
  65. {% endif %}
  66. </div>
  67. <section>
  68. <div class="span2" style="float:right;font-size:0.9em;">
  69. {% if article.date %}
  70. <h4>Published</h4>
  71. {% set day = article.date.strftime('%d')|int %}
  72. <time pubdate="pubdate" datetime="{{ article.date.isoformat() }}">{{ article.date.strftime('%b') }} {{ day }} {{- article.date.strftime(', %Y') }}</time>
  73. {% endif %}
  74. {% include '_includes/last_updated.html' %}
  75. {% if article.category|trim|count > 0 %}
  76. <h4>Category</h4>
  77. <a class="category-link" href="{{ SITEURL }}/categories.html#{{ category.slug }}-ref">{{ article.category }}</a>
  78. {% endif %}
  79. {% if article.tags and article.tags[0]|trim|count > 0 %}
  80. <h4>Tags</h4>
  81. <ul class="list-of-tags tags-in-article">
  82. {% for tag in article.tags|sort %}
  83. <li><a href="{{ SITEURL }}/tags.html#{{ tag.slug }}-ref">{{ tag }}
  84. {% for aTag, tagged_articles in tags if aTag == tag %}
  85. <span>{{ tagged_articles|count }}</span>
  86. {% endfor %}</a></li>
  87. {% endfor %}
  88. </ul>
  89. {% endif %}
  90. {% include '_includes/social_links.html' %}
  91. {% include '_includes/mailchimp.html' %}
  92. </div>
  93. </section>
  94. </div>
  95. </article>
  96. {% endblock content %}
  97. {% block script %}
  98. {{ super() }}
  99. {% from '_includes/comments.html' import comments_script with context %}
  100. {{ comments_script(article) }}
  101. {% endblock script %}