Use level 3 heading for blog titles
This commit is contained in:
parent
ad87f93e48
commit
02c8311c38
|
@ -26,14 +26,14 @@ eleventyComputed:
|
||||||
<ul class="blog__posts">
|
<ul class="blog__posts">
|
||||||
{% for post in postList %}
|
{% for post in postList %}
|
||||||
<li class="blog__post">
|
<li class="blog__post">
|
||||||
<h2 class="blog__post--title">
|
<h3 class="blog__post--title">
|
||||||
<a href="{{ post.url }}">
|
<a href="{{ post.url }}">
|
||||||
{% if post.data.title %}{{ post.data.articleTitle }}
|
{% if post.data.title %}{{ post.data.articleTitle }}
|
||||||
{% else %}
|
{% else %}
|
||||||
<code>{{ post.url }}</code>
|
<code>{{ post.url }}</code>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</a>
|
</a>
|
||||||
</h2>
|
</h3>
|
||||||
<p class="blog__post--time">{{ post.date | formatDate }}</p>
|
<p class="blog__post--time">{{ post.date | formatDate }}</p>
|
||||||
<p>{{ post.data.desc }}</p>
|
<p>{{ post.data.desc }}</p>
|
||||||
</li>
|
</li>
|
||||||
|
|
Loading…
Reference in New Issue