diff options
author | Taiju Muto <hello@tai2.net> | 2014-07-03 03:10:18 +0900 |
---|---|---|
committer | Taiju Muto <hello@tai2.net> | 2014-07-03 03:14:38 +0900 |
commit | 6ab8b2906a212a6e7ef0f2a92ca8844dd998e7f5 (patch) | |
tree | 6a3928a9a41d76858aa7ec09a68798d7c1d6ead7 /built-texts/templates/page.html | |
parent | 2074d08fad36f9e39218526c3936d9e7857aa071 (diff) | |
download | pelican-themes-6ab8b2906a212a6e7ef0f2a92ca8844dd998e7f5.tar.gz |
Display article/page title.
Diffstat (limited to 'built-texts/templates/page.html')
-rw-r--r-- | built-texts/templates/page.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/built-texts/templates/page.html b/built-texts/templates/page.html index 6c0e36a..1cb55a1 100644 --- a/built-texts/templates/page.html +++ b/built-texts/templates/page.html @@ -1,6 +1,6 @@ {% extends "base.html" %} -{% block title %} {% endblock %} -{% block content %} +{% block title %}{{ page.title }}- {{ SITENAME }}{%endblock%} +{% block content %} <section id="content" class="body span10"> <h2 class="content-title">{{ page.title }}</h2> {% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">get |