2018-12-06 18:20:14 +00:00
|
|
|
{% extends 'page' %}
|
2017-07-11 00:08:32 +00:00
|
|
|
|
2018-10-20 23:11:06 +00:00
|
|
|
{% block page_title %}{% endblock %}
|
|
|
|
|
2018-12-29 02:13:05 +00:00
|
|
|
{% block metaTags %}
|
|
|
|
<meta name="twitter:card" content="summary">
|
|
|
|
<meta name="twitter:site" content="@{{ site.twitter.name }}">
|
|
|
|
<meta name="twitter:title" content="{{ page.title }}">
|
|
|
|
<meta name="twitter:creator" content="@{{ site.twitter.name }}">
|
|
|
|
<meta name="twitter:image" content="{{ page.meta.image ?: site.url ~ site.avatar.url }}">
|
|
|
|
{% if page.meta.description %}<meta name="twitter:description" content="{{ page.meta.description }}">{% endif %}
|
|
|
|
{% endblock %}
|
|
|
|
|
2017-07-11 00:08:32 +00:00
|
|
|
{% block content_wrapper %}
|
|
|
|
{% include 'post/header' %}
|
2017-08-06 18:31:59 +00:00
|
|
|
{% include 'post/intro-image' %}
|
2017-07-11 00:08:32 +00:00
|
|
|
|
2018-05-28 23:33:00 +00:00
|
|
|
<div class="markdown mb-6">
|
2018-06-20 22:06:09 +00:00
|
|
|
{% include 'post/old-post-message' %}
|
2018-04-23 20:30:24 +00:00
|
|
|
{{ page.summary|markdown }}
|
2018-02-27 21:18:35 +00:00
|
|
|
{% block excerpt %}{% endblock %}
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
</div>
|
2017-07-11 00:08:32 +00:00
|
|
|
|
2018-06-20 22:06:09 +00:00
|
|
|
{% include 'post/questions-comments' %}
|
2017-07-11 00:08:32 +00:00
|
|
|
{% include 'post/tags' %}
|
2018-11-20 01:12:44 +00:00
|
|
|
{#
|
2017-07-11 00:08:32 +00:00
|
|
|
{% include 'post/pager' %}
|
|
|
|
{% include 'post/about-author' %}
|
2018-11-20 01:12:44 +00:00
|
|
|
#}
|
2017-07-11 00:08:32 +00:00
|
|
|
{% endblock %}
|
2017-11-01 21:06:56 +00:00
|
|
|
|
|
|
|
{% block scripts %}
|
2018-12-29 02:13:05 +00:00
|
|
|
{% if page.has_tweets %}
|
|
|
|
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
|
|
|
|
{% endif %}
|
|
|
|
|
2017-11-09 22:44:30 +00:00
|
|
|
<script>hljs.initHighlightingOnLoad();</script>
|
2017-11-01 21:06:56 +00:00
|
|
|
{% endblock %}
|