forked from github/pelican
Add of brownstone template
This commit is contained in:
parent
01af09fd23
commit
c9626d7916
19 changed files with 887 additions and 0 deletions
17
pelican/themes/brownstone/templates/page.html
Normal file
17
pelican/themes/brownstone/templates/page.html
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{% extends "base.html" %}
|
||||
{% block title %}{{ page.title }}{% endblock %}
|
||||
{% block content %}
|
||||
<div id="content">
|
||||
<div class="post">
|
||||
<h2 class="title"><a href="{{ SITEURL }}/pages/{{ page.url }}">{{ page.title }}</a></h1>
|
||||
{% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">get
|
||||
the pdf</a>{% endif %}
|
||||
<div style="clear: both;"> </div>
|
||||
<div class="entry">
|
||||
{{ page.content }}
|
||||
{% include 'twitter.html' %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue