all repos — website @ eb51778065f61a2fe5e15c3f0cdba0e3b306731a

My website

fix post tags validation error

Alan Pearce
commit

eb51778065f61a2fe5e15c3f0cdba0e3b306731a

parent

f20b2c91f779d6b825ee94cb133ea19bf5db5c66

2 files changed, 10 insertions(+), 4 deletions(-)

changed files
M templates/post.htmltemplates/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.csstemplates/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;