Skip to content

Commit c25e176

Browse files
authored
Merge pull request #113 from BenJetson/#112-fix-headings
#112 Fix inconsistent headings.
2 parents 044dbd7 + f120ebb commit c25e176

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

_layouts/blogpost.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
/>
1717
{% endif %}
1818
<div class="card-body">
19-
<h2 class="m-0">{{page.title}}</h2>
19+
<h1 class="m-0">{{page.title}}</h1>
2020
</div>
2121
<div class="card-footer text-muted">
2222
<div class="row no-gutters mb-2 mt-2">

_layouts/project.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<div class="col-md-4 p-3">
88
<div class="card project-header">
99
<div class="card-body">
10-
<h2>{{page.title}}</h2>
10+
<h1>{{page.title}}</h1>
1111
<p class="card-description">{{page.description}}</p>
1212
<p class="card-text">
1313
<small class="text-muted">{{ page.date | date: '%B %Y' }}</small>
@@ -70,7 +70,7 @@ <h2>{{page.title}}</h2>
7070
</div>
7171
<div class="col-md-8 p-3 min-vh-50">
7272
<div class="mb-3 d-none d-md-block"></div>
73-
<h3 id="more">About This Project</h3>
73+
<h2 id="more">About This Project</h2>
7474
<div class="usercontent">{{page.content}}</div>
7575
</div>
7676
</div>

about.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
{% include wip.html %}
88

99
<section class="my-4">
10-
<h2>About</h2>
10+
<h1>About</h1>
1111
<p>This page doesn't have any useful information yet.</p>
1212
</section>

blog/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ <h3 class="card-title">{{ post.title }}</h3>
212212
</nav>
213213
</div>
214214
<div class="col-xs-12 col-md-4 col-lg-3">
215-
<h3>Featured</h3>
215+
<h2>Featured</h2>
216216
<section class="my-3">
217217
{% assign featuredCount = 0 %}
218218
<!-- -->

comments.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
---
44

55
<div class="container my-3">
6-
<h2>Comment Policy</h2>
6+
<h1>Comment Policy</h1>
77
<p>
88
Certain pages on this site have a section where users are allowed to share
99
comments about the page content with other site users. These comment

projects.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
---
55

66
<div class="container py-3">
7-
<h2>Projects</h2>
7+
<h1>Projects</h1>
88
<p>
99
A collection of some of my notable works, some involving more than code!
1010
</p>

resume.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
{% include wip.html %}
88

99
<section class="my-4">
10-
<h2>Resumé/CV</h2>
10+
<h1>Resumé/CV</h1>
1111
<p>
1212
Coming soon: resumé and CV are not available yet on this webpage. Interested
1313
parties should contact me directly.

0 commit comments

Comments
 (0)