Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a4c9c65

Browse files
committedNov 13, 2020
Fix header levels
1 parent ac50b13 commit a4c9c65

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎_includes/project_posts.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{% assign slug = page.title | slugify:default %}
22
{% assign project_posts = site.posts | where:"category","project-post" | where:"project",slug %}
33
{% for project_post in project_posts %}
4-
<h3><a href="{{ project_post.url }}">{{ project_post.title }}</a></h3>
4+
<h1><a href="{{ project_post.url }}">{{ project_post.title }}</a></h1>
55
<time>{{ project_post.date | date: "%F" }}</time>
66
{{ project_post.content }}
77
{% endfor %}

‎_layouts/page.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ <h1><a href="/">{{ site.name }}</a></h1>
1414
</nav>
1515
</header>
1616
<main>
17-
<h2>{{ page.title }}</h2>
17+
<h1>{{ page.title }}</h1>
1818
{{ content }}
1919
</main>
2020
<link href="https://fonts.googleapis.com/css2?family=Mulish&display=swap" rel="stylesheet">

‎index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: landing
33
permalink: /
44
---
5-
## Recent Posts
5+
# Recent Posts
66

77
{% for post in site.posts limit: 4 %}
88
<article>

0 commit comments

Comments
 (0)
Please sign in to comment.