diff options
author | Alexis Metaireau <alexis@notmyidea.org> | 2012-03-27 15:38:13 -0700 |
---|---|---|
committer | Alexis Metaireau <alexis@notmyidea.org> | 2012-03-27 15:38:13 -0700 |
commit | 51252efe985968fd564c9c68d2c94cf5182557f8 (patch) | |
tree | bfe151e0b0137e5431ba10d6a2a569ba57580064 /bootlex/templates/article.html | |
parent | e38b06c659d60590c0000f2938387d7fa161e2e5 (diff) | |
parent | 7dc4d494bd4a5dc5f81a0d2819bdedbcba4367b5 (diff) | |
download | pelican-themes-51252efe985968fd564c9c68d2c94cf5182557f8.tar.gz |
Merge pull request #19 from alexex/master
added bootlex theme to the themes repo
Diffstat (limited to 'bootlex/templates/article.html')
-rw-r--r-- | bootlex/templates/article.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/bootlex/templates/article.html b/bootlex/templates/article.html new file mode 100644 index 0000000..18ba9a3 --- /dev/null +++ b/bootlex/templates/article.html @@ -0,0 +1,13 @@ +{% extends "base.html" %} +{% block title %}{{ article.title }}{%endblock%} +{% block content %} +<div id="content"> + <div class="header"> + <h1>{{ article.title }}</h1> + </div> + <p class="meta"><small><span>{% if article.author %}<a href="{{ SITEURL }}author/{{ article.author.slug }}/">{{ article.author }}</a> - {% endif %}</span><span>{{ article.locale_date }}</span> - <span class="tags">{% if article.tags %}{% for tag in article.tags %}<a href="/tag/{{ tag }}/">{{ tag }}</a>{% if not loop.last %}, {% endif %}{% endfor %}{% endif %}</span></small></p> + <div class="entry-content"> + {{ article.content }} + </div><!-- /.entry-content --> +</div> +{% endblock %} |