check in
[Ultimately_Untrue_Thought.git] / theme / templates / article.html
1 {% extends "base.html" %}
2 {% block title %}{{ article.title|striptags }} ★ {{ SITENAME }}{% endblock %}
3
4 {% block extra_meta %}
5
6         <meta name="description" content="{{ article.summary|striptags }}">
7 {% endblock %}
8
9 {% block content %}
10         <article class="full">
11
12                 <h1>{{ article.title }}</h1>
13
14                 {% include 'metadata.inc.html' %}
15
16                 {{ article.content }}
17
18         </article>
19
20         <p>
21           <!-- Twitter social -->
22           <a href="https://twitter.com/share" class="twitter-share-button" data-lang="en" data-size="large">Tweet</a>
23           <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
24
25           <!-- Reddit social -->
26           <a href="http://www.reddit.com/submit?url=unremediatedgender.space/{{ article.url }}&title={{ article.title }}" target="_blank" title="Submit to Reddit">
27             <img alt="Submit to Reddit"
28                  src="/theme/images/icons/reddit.svg" height="30px"/>
29           </a>
30         </p>
31         <p>
32           <a style="font-size: 80%;" href="http://unremediatedgender.space/source?p=Ultimately_Untrue_Thought.git;a=history;f=content/{{ article.date.year }}/{{ article.slug }}.md;hb=HEAD">(Post revision history)</a>
33         </p>
34
35         <p>Comments permit <a href="https://www.markdownguide.org/basic-syntax/#emphasis">Markdown</a> or HTML formatting.</p>
36         <script data-isso="//unremediatedgender.space/isso"
37                 data-isso-reply-to-self="true"
38                 data-isso-require-author="true"
39                 data-isso-require-email="true"
40                 data-isso-max-comments-top="inf"
41                 data-isso-max-comments-nested="inf"
42                 data-isso-feed="true" {# TODO: why doesn't the feed link work?! #}
43                 src="//unremediatedgender.space/isso/js/embed.min.js"></script>
44         <section id="isso-thread"></section>
45
46 {% endblock %}