48 lines
1.5 KiB
HTML
48 lines
1.5 KiB
HTML
{% extends "base.html" %}
|
|
|
|
<!-- Custom front matter -->
|
|
{% block extrahead %}
|
|
|
|
<!-- Determine title -->
|
|
{% set title = config.site_name %}
|
|
{% if page and page.title and not page.is_homepage %}
|
|
{% set title = config.site_name ~ " - " ~ page.title | striptags %}
|
|
{% endif %}
|
|
|
|
<!-- The image needs to have an absolute URL -->
|
|
{% set image = config.site_url ~ 'branding/android-chrome-512x512.png' %}
|
|
|
|
<!-- Open graph meta tags -->
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:title" content="{{ title }}" />
|
|
<meta property="og:description" content="{{ config.site_description }}" />
|
|
<meta property="og:url" content="{{ page.canonical_url }}" />
|
|
<meta property="og:image" content="{{ image }}" />
|
|
<meta property="og:image:type" content="image/png" />
|
|
<meta property="og:image:width" content="1200" />
|
|
<meta property="og:image:height" content="630" />
|
|
|
|
<!-- Twitter meta tags -->
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
<meta name="twitter:site" content="@modernuo" />
|
|
<meta name="twitter:creator" content="@modernuo" />
|
|
<meta name="twitter:title" content="{{ title }}" />
|
|
<meta name="twitter:description" content="{{ config.site_description }}" />
|
|
<meta name="twitter:image" content="{{ image }}" />
|
|
|
|
<!-- Extra stylesheets -->
|
|
<link
|
|
rel="stylesheet"
|
|
href="{{ 'assets/stylesheets/overrides.css' | url }}"
|
|
/>
|
|
{% endblock %}
|
|
|
|
<!-- Content -->
|
|
{% block content %}
|
|
{{ super() }}
|
|
|
|
<!-- Content footer -->
|
|
<footer class="tx-content__footer md-typeset">
|
|
|
|
</footer>
|
|
{% endblock %}
|