fix: render only headings as links

This commit is contained in:
Aravinth Manivannan 2022-10-30 22:50:06 +05:30
parent 0f5a7e3735
commit fbbc0a27cf
Signed by: realaravinth
GPG Key ID: AD9F0F08E855ED88
1 changed files with 2 additions and 3 deletions

View File

@ -31,11 +31,10 @@ Project" %}
{% for page in section.pages %}
<li class="blog__post-item">
<a href="{{ page.permalink | safe }}" class="blog__post-link">
<h3 class="blog__post-title">{{ page.title }}</h3>
<h3 class="blog__post-title">{{ page.title }}</h3></a>
<p class="blog__post-description">
{{ page.content | safe }}
</p></a
>
</p>
</li>
{% endfor %}
</ul>