aboutsummaryrefslogtreecommitdiff
path: root/crumbs/templates/category.html
diff options
context:
space:
mode:
Diffstat (limited to 'crumbs/templates/category.html')
-rwxr-xr-xcrumbs/templates/category.html18
1 files changed, 9 insertions, 9 deletions
diff --git a/crumbs/templates/category.html b/crumbs/templates/category.html
index d88ab8c..916ea92 100755
--- a/crumbs/templates/category.html
+++ b/crumbs/templates/category.html
@@ -7,19 +7,19 @@
<h1>{{ category }}</h1>
-<br/>
-
-<dl class="dl-horizontal">
- {% for article in articles %}
- <div class="card">
- <h2><b><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></b></h2>
+{% for article in articles %}
+<div class="card">
+ <div class="card-header">
+ <h2 class="card-header-url"><b><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></b></h2>
{% set in_article = false %}
{% include "article_header.html" %}
+ </div>
- <p>{{ article.summary }}</p>
+ <div class="card-content">
+ {{ article.summary }}
</div>
- {% endfor %}
-</dl>
+</div>
+{% endfor %}