Import old blogpost

Add more tags
Fix some styling issues I found
This commit is contained in:
Michał Gdula 2024-05-28 22:25:32 +01:00
parent 3592650efc
commit c39c794892
8 changed files with 88 additions and 8 deletions

View file

@ -27,8 +27,9 @@ tags.forEach((tag) => {
<ul role="list" class="pill-list">
{tags.map(tag => (
<li>
<a class="button" href=`/search/${tag.slug}`>
{tag.data.name} {tag.data.postCount}
<a class="pill large" href=`/search/${tag.slug}`>
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" fill="currentColor" viewBox="0 0 256 256"><path d="M216,152H168V104h48a8,8,0,0,0,0-16H168V40a8,8,0,0,0-16,0V88H104V40a8,8,0,0,0-16,0V88H40a8,8,0,0,0,0,16H88v48H40a8,8,0,0,0,0,16H88v48a8,8,0,0,0,16,0V168h48v48a8,8,0,0,0,16,0V168h48a8,8,0,0,0,0-16Zm-112,0V104h48v48Z"></path></svg>
{tag.data.name} - {tag.data.postCount}
</a>
</li>
))}