fix post tags validation error
Alan Pearce alan@alanpearce.eu
Thu, 18 Apr 2024 21:42:23 +0200
2 files changed, 10 insertions(+), 4 deletions(-)
M templates/post.html → templates/post.html
@@ -59,10 +59,12 @@ </tr> </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>
M templates/style.css → templates/style.css
@@ -58,7 +58,11 @@ padding: unset; font-size: small; } -.tags > li { +.tags ul { + display: inline-block; +} + +.tags li { list-style: none; display: inline-block; padding-right: 1ex;