sito-hackit-16/themes/hm15/templates/page.html
2016-01-25 12:53:49 -05:00

47 lines
1.5 KiB
HTML

{% extends "base.html" %}
{% block title %}{{ page.title }} - {{ SITENAME }}{% endblock %}
{% block html_lang %}{{ page.lang }}{% endblock %}
{% block meta %}
{% if page.author %}
<meta name="author" content="{{ page.author }}" />
{% else %}
<meta name="author" content="{{ AUTHOR }}" />
{% endif %}
{% if page.summary %}
<meta name="description" content="{{ page.summary|striptags|escape }}" />
{% endif %}
{% endblock %}
{% block canonical_rel %}
<link rel="canonical" href="{{ SITEURL }}/{{ page.url }}">
{% endblock %}
{% block breadcrumbs %}
{% if DISPLAY_BREADCRUMBS %}
<ol class="breadcrumb">
<li><a href="{{ SITEURL }}" title="{{ SITENAME }}"><i class="fa fa-home fa-lg"></i></a></li>
{% if page.url %}
<li class="active">{{ page.title }}</li>
{% endif %}
</ol>
{% endif %}
{% endblock %}
{% block content %}
<article id="content" class="body slug-{{page.slug}}" lang="{{page.lang}}">
<h1 class="entry-title">{{ page.title }}</h1>
{% import 'includes/translations.html' as translations with context %}
{{ translations.translations_for(page) }}
{% if PDF_PROCESSOR %}
<a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">
get the pdf
</a>
{% endif %}
<div class="entry-content">
{{ page.content }}
{% if page.comments == 'enabled' %}
{% include 'includes/comments.html' %}
{% endif %}
</div>
</article>
{% endblock %}