Skip to content

Commit

Permalink
promote h3 to h2
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHicks committed May 6, 2024
1 parent 6bf7f53 commit 25c8198
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/projects.html
Expand Up @@ -8,7 +8,7 @@ <h1>{{ section.title }}</h1>
{% set projects = section.pages | group_by(attribute="extra.when") %}

{% for project in projects["now"] %}
<h3><a href="{{ project.permalink | safe }}">{{ project.title | markdown(inline=true) | safe }}</a></h3>
<h2><a href="{{ project.permalink | safe }}">{{ project.title | markdown(inline=true) | safe }}</a></h2>
<p>({{ project.date | date(format="%B %Y") }}{% if project.updated %}, last updated {{ project.updated | date(format="%B %Y") }}{% endif %})</p>
{{ project.content | safe }}
{% endfor %}
Expand Down

0 comments on commit 25c8198

Please sign in to comment.