mirror of
https://github.com/RGBCube/Site
synced 2025-07-30 20:47:46 +00:00
blog: fix link alignment
This commit is contained in:
parent
a80a934c77
commit
2db03d05e3
1 changed files with 9 additions and 3 deletions
|
@ -12,9 +12,15 @@ title: about:blog
|
|||
|
||||
<ul>
|
||||
{{ for article of search.pages("type=article", "order=asc date=desc")}}
|
||||
<li>
|
||||
<code><a href="{{ article.url }}">{{ article.date.toISOString().slice(0, 10) }}</a></code>
|
||||
<div class="inline-block">{{ article.title |> md }}</div>
|
||||
<li class="flex">
|
||||
<!-- Nope, m-0 doesn't work! -->
|
||||
<code style="margin:0" class="pr-1.25">
|
||||
<a class="text-right" href="{{ article.url }}">
|
||||
{{ article.date.toISOString().slice(2, 10).replaceAll("-", " ") }}
|
||||
</a>
|
||||
</code>
|
||||
|
||||
{{ article.title |> md }}
|
||||
</li>
|
||||
{{ /for }}
|
||||
</ul>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue