diff options
Diffstat (limited to 'tuxlite_tbs/templates/index.html')
-rw-r--r-- | tuxlite_tbs/templates/index.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tuxlite_tbs/templates/index.html b/tuxlite_tbs/templates/index.html index 45a491d..8b7dd93 100644 --- a/tuxlite_tbs/templates/index.html +++ b/tuxlite_tbs/templates/index.html @@ -13,7 +13,9 @@ <a href="{{ SITEURL }}/{{ article.url }}"><h2>{{ article.title }}</h2></a> {% include "metadata.html" %} </div> + <div>{{ article.content }}</div> + <hr /> </div> {% if loop.length == 1 %} @@ -21,8 +23,6 @@ {% endif %} {% if loop.length > 1 %} - <hr /> - <br /> <h2>Other Entries</h2> {% endif %} @@ -32,7 +32,7 @@ <div class='article'> <a href="{{ SITEURL }}/{{ article.url }}"><h3>{{ article.title }}</h3></a> <div class= "well small"> {% include "metadata.html" %} </div> - <div class="summary">{{ article.summary }} <a class="btn primary xsmall" href="{{ SITEURL }}/{{ article.url }}">read more</a></div> + <div class="summary">{{ article.summary }} <a class="btn btn-info xsmall" href="{{ SITEURL }}/{{ article.url }}">read more</a></div> </div> {% if loop.last and (articles_page.has_previous() or not articles_page.has_previous() and loop.length > 1) %} |