refactor(templates): use toplevel <li>
tag for items under <ul>
This commit is contained in:
parent
951abc097c
commit
c2d9489b35
@ -18,11 +18,9 @@
|
|||||||
<div class="articles-container">
|
<div class="articles-container">
|
||||||
<ul>
|
<ul>
|
||||||
{% for article in articles | sort(attribute="frontmatter.published") | reverse -%}
|
{% for article in articles | sort(attribute="frontmatter.published") | reverse -%}
|
||||||
<a href="/articles/{{ article.link }}">
|
<li><a href="/articles/{{ article.link }}">
|
||||||
<li>
|
|
||||||
{{ front_matter_macro::gen(frontmatter=article.frontmatter, link=article.link) }}
|
{{ front_matter_macro::gen(frontmatter=article.frontmatter, link=article.link) }}
|
||||||
</li>
|
</a></li>
|
||||||
</a>
|
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user