56 lines
2.1 KiB
HTML
56 lines
2.1 KiB
HTML
{% extends "/html/base.html" %}
|
|
{%block subtitle %}: {{page.title}}{% endblock %}
|
|
{% block meta %}
|
|
{% if page.description %}
|
|
<meta name="description" content="{{page.description}}">
|
|
{% comment %} OpenGraph tags {% endcomment %}
|
|
<meta property="og:description" content="{{page.description}}">
|
|
{% endif %}
|
|
{% if page.image %}
|
|
{% if page.image.path %}
|
|
<meta property="og:image" content="{{site-url}}{{blog-prefix}}{{page.image.path}}" />
|
|
{% if page.image.type %}
|
|
<meta property="og:image:type" content="{{page.image.type}}" />{% endif %}
|
|
{% if page.image.width %}
|
|
<meta property="og:image:width" content="{{page.image.width}}" />{% endif %}
|
|
{% if page.image.height %}
|
|
<meta property="og:image:height" content="{{page.image.height}}" />{% endif %}
|
|
{% if page.image.alt %}
|
|
<meta property="og:image:alt" content="{{page.image.alt}}" />{% endif %}
|
|
{% else %}
|
|
<meta property="og:image" content="{{site-url}}{{blog-prefix}}{{page.image}}" />{% endif %}
|
|
{% endif %}
|
|
<meta property="og:url" content="{{site-url}}{{uri}}" />
|
|
<meta property="og:title" content="{{page.title}}" />
|
|
<meta property="og:type" content="article" />
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
<meta name="twitter:url" content="{{site-url}}{{uri}}" />
|
|
<meta name="twitter:title" content="{{page.title}}" />
|
|
<meta name="twitter:description" content="{{page.description}}" />
|
|
{% if page.image %}
|
|
<meta name="twitter:image"
|
|
content="{{site-url}}{{blog-prefix}}{% if page.image.path %}{{page.image.path}}{% else %}{{page.image}}{% endif %}" />
|
|
{% endif %}
|
|
<meta name="twitter:creator" content="{{twitter-acct}}" />
|
|
{% endblock %}
|
|
{% block content %}
|
|
<div id="custom-page">
|
|
<div id="page-header">
|
|
<h2>{{page.title}}</h2>
|
|
</div>
|
|
{% if page.toc %}{{page.toc|safe}}{% endif %}
|
|
{{page.content|safe}}
|
|
|
|
<div id="prev-next">
|
|
{% if page.prev %}
|
|
<a href="{{page.prev.uri}}">« {{page.prev.title}}</a>
|
|
{% endif %}
|
|
{% if all page.prev page.next %}
|
|
||
|
|
{% endif %}
|
|
{% if page.next %}
|
|
<a href="{{page.next.uri}}">{{page.next.title}} »</a>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|