diff options
author | Jesús <heckyel@hyperbola.info> | 2019-03-17 17:15:18 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-03-17 17:15:18 -0500 |
commit | 3128b6338ebece5cc485abc2aff96b16b62374cc (patch) | |
tree | a36615cfbc2229da5938f12b235ef11fcc4edf71 | |
parent | e688de7eb717e7abf8219f9d6e82597151a70acc (diff) | |
download | cl-3128b6338ebece5cc485abc2aff96b16b62374cc.tar.lz cl-3128b6338ebece5cc485abc2aff96b16b62374cc.tar.xz cl-3128b6338ebece5cc485abc2aff96b16b62374cc.zip |
fix semantic HTML5, change div for article tag
-rw-r--r-- | cl-theme/templates/article.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cl-theme/templates/article.html b/cl-theme/templates/article.html index d641148..c6be842 100644 --- a/cl-theme/templates/article.html +++ b/cl-theme/templates/article.html @@ -62,7 +62,7 @@ <!-- start of posts --> <div class="columns is-multiline is-centered"> <!-- start of post --> - <div class="column is-10"> + <article class="column is-10"> <div class="card"> <!-- post header --> @@ -161,7 +161,7 @@ </div> <!-- end of post content --> - </div> + </article> <!-- end of post --> </div> <!-- end of post column --> |