pelican-mg/templates/page.html

36 lines
1.4 KiB
HTML
Raw Permalink Normal View History

2014-12-29 22:08:56 +00:00
{% extends "base.html" %}
{% block title %}{{ page.title|capitalize }}{% endblock %}
{% block description %}{% endblock %}
2015-01-01 20:06:34 +00:00
{% block seo %}
2017-08-15 22:16:19 +00:00
<meta property="og:title" content="{{ page.title|capitalize }}" >
<meta property="og:type" content="website" >
<meta property="og:url" content="{{ SITEURL }}/{{ page.url }}" >
<meta name="twitter:url" content="{{ SITEURL }}/{{ page.url }}" >
<meta itemprop="url" content="{{ SITEURL }}/{{ page.url }}">
2015-01-01 20:06:34 +00:00
{% if page.image %}
2017-08-15 22:16:19 +00:00
<meta property="og:image" content="{{ page.image }}" >
<meta name="twitter:image" content="{{ page.image }}" >
2015-01-09 18:56:22 +00:00
<meta itemprop="image" content="{{ page.image }}">
2015-01-01 23:56:46 +00:00
{% elif META_IMAGE %}
2017-08-15 22:16:19 +00:00
<meta property="og:image" content="{{ META_IMAGE }}" >
<meta property="og:image:type" content="{{ META_IMAGE_TYPE }}" >
<meta name="twitter:image" content="{{ META_IMAGE }}" >
<meta itemprop="image" content="{{ SITEURL }}/{{ META_IMAGE }}">
2015-01-01 20:06:34 +00:00
{% endif %}
{% if page.summary %}
2019-02-13 20:50:27 +00:00
<meta property="og:description" content="{{ page.summary|striptags|escape }}" >
<meta name="twitter:description" content="{{ page.summary|striptags|escape }}" >
<meta itemprop="description" content="{{ page.summary|striptags|escape }}">
2015-01-01 20:06:34 +00:00
{% endif %}
{% endblock %}
2017-08-10 16:30:29 +00:00
{% block content %}
2019-05-28 05:48:26 +00:00
<article class="uk-article uk-width-4-5@m">
2019-05-28 23:46:21 +00:00
<h1 class="uk-heading-primary uk-article-title" itemprop="name">{{ page.title }}</h1>
<div class="uk-article-content">
2014-12-29 22:08:56 +00:00
{{ page.content }}
</div>
</article>
2014-12-29 22:08:56 +00:00
{% endblock %}