aboutsummaryrefslogtreecommitdiffstats
path: root/cl-theme
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2019-03-17 17:10:48 -0500
committerJesús <heckyel@hyperbola.info>2019-03-17 17:10:48 -0500
commit1e525f348fc51a37ee63da6fa7960f573003d92b (patch)
tree73ae8cef970998a72be103bc14e5f006baca4e5d /cl-theme
parenta6192ae4bffdec44e09fd1634af8d9e95ac82296 (diff)
downloadcl-1e525f348fc51a37ee63da6fa7960f573003d92b.tar.lz
cl-1e525f348fc51a37ee63da6fa7960f573003d92b.tar.xz
cl-1e525f348fc51a37ee63da6fa7960f573003d92b.zip
fix semantic HTML5 article not div
Diffstat (limited to 'cl-theme')
-rw-r--r--cl-theme/templates/base.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/cl-theme/templates/base.html b/cl-theme/templates/base.html
index 6d27382..c5aa5ac 100644
--- a/cl-theme/templates/base.html
+++ b/cl-theme/templates/base.html
@@ -115,7 +115,7 @@
<div class="columns is-multiline is-centered has-text-centered">
<!-- start of post -->
{% for article in articles_page.object_list %}
- <div class="column is-4">
+ <article class="column is-4">
<div class="card">
<!-- image for post -->
{% if article.image %}
@@ -180,7 +180,7 @@
</div>
<!-- end of post content -->
</div>
- </div>
+ </article>
{% endfor %}
<!-- end of post -->
</div>