article.html 4.7 KB

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