diff options
author | Alan Pearce | 2024-04-18 21:42:23 +0200 |
---|---|---|
committer | Alan Pearce | 2024-04-18 21:42:23 +0200 |
commit | eb51778065f61a2fe5e15c3f0cdba0e3b306731a (patch) | |
tree | d2a46e8933720c29c51a518fb94b337d0a8a237d /templates/post.html | |
parent | f20b2c91f779d6b825ee94cb133ea19bf5db5c66 (diff) | |
download | website-eb51778065f61a2fe5e15c3f0cdba0e3b306731a.tar.lz website-eb51778065f61a2fe5e15c3f0cdba0e3b306731a.tar.zst website-eb51778065f61a2fe5e15c3f0cdba0e3b306731a.zip |
fix post tags validation error
Diffstat (limited to 'templates/post.html')
-rw-r--r-- | templates/post.html | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/templates/post.html b/templates/post.html index 624679f..d93b766 100644 --- a/templates/post.html +++ b/templates/post.html @@ -59,10 +59,12 @@ foo=bar </tbody> </table> </div> - <ul class="p-categories tags"> + <div class="tags"> Tags: - <li><a class="p-category" href="/tags/sample/">#sample</a></li> - </ul> + <ul class="p-categories tags"> + <li><a class="p-category" href="/tags/sample/">#sample</a></li> + </ul> + </div> </article> </main> <footer> |