aboutsummaryrefslogtreecommitdiffstats
path: root/pelican-bootstrap3/templates/page.html
diff options
context:
space:
mode:
Diffstat (limited to 'pelican-bootstrap3/templates/page.html')
-rw-r--r--pelican-bootstrap3/templates/page.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/pelican-bootstrap3/templates/page.html b/pelican-bootstrap3/templates/page.html
new file mode 100644
index 0000000..179b2d7
--- /dev/null
+++ b/pelican-bootstrap3/templates/page.html
@@ -0,0 +1,27 @@
+{% extends "base.html" %}
+{% block title %}{{ page.title }} - {{ SITENAME }}{% 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>
+ <li class="active">{{ page.title }}</li>
+ </ol>
+ {% endif %}
+{% endblock %}
+
+{% block content %}
+ <section id="content" class="body">
+ <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 }}
+ </div>
+ </section>
+{% endblock %}