Initial commit.
This commit is contained in:
commit
b2e2fde818
36 changed files with 1475 additions and 0 deletions
21
themes/blue/html/post-content.html
Normal file
21
themes/blue/html/post-content.html
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
<div class="post-header">
|
||||
<div id="post-meta" class="row">
|
||||
<div class="col-lg-6">{{post.date|date:longDate}}</div>
|
||||
{% if post.author %}
|
||||
<span class="col-lg-6 right">By: {{post.author}}</span>
|
||||
{% endif %}
|
||||
</div>
|
||||
<h1>{{post.title}}</h1>
|
||||
</div>
|
||||
<div>
|
||||
{% if post.toc %}{{post.toc|safe}}{% endif %}
|
||||
{{post.content|safe}}
|
||||
</div>
|
||||
{% if post.tags|not-empty %}
|
||||
<div id="post-tags">
|
||||
<b>Tags: </b>
|
||||
{% for tag in post.tags|sort-by:name %}
|
||||
<a href="{{tag.uri}}">| {{tag.name}} </a>
|
||||
{% endfor %}|
|
||||
</div>
|
||||
{% endif %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue