Skip to content

Commit a9252d4

Browse files
author
delphidabbler
committed
Replace <h3> headings with <h2> and <h4> with <h3>
Heading use now make semantic sense - was using <h3> instead of <h2>, for e.g., to make text smaller - will now be using styling
1 parent 987d26c commit a9252d4

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

codelib.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ <h1 roll="heading">
1818
<div class="col-sm-6">
1919
<div class="panel panel-default {% if item.mothballed %}panel-warning{% endif %}">
2020
<header class="panel-heading" id="{{ item.id | escape }}-head">
21-
<h3>{{ item.title | escape }}</h3>
21+
<h2>{{ item.title | escape }}</h2>
2222
</header>
2323
<div class="panel-body">
2424
<p>{{ item.summary | escape }}</p>

index.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ <h1 roll="heading">Home</h1>
2121
<div class="col-sm-6 col-lg-4">
2222
<div class="panel panel-default">
2323
<header class="panel-heading" id="apps">
24-
<h3>Apps</h3>
24+
<h2>Apps</h2>
2525
</header>
2626
<div class="panel-body">
2727
<p>There are several open source applications here.</p>
@@ -36,7 +36,7 @@ <h3>Apps</h3>
3636
<div class="col-sm-6 col-lg-4">
3737
<div class="panel panel-default">
3838
<header class="panel-heading" id="codelib">
39-
<h3>Code Library</h3>
39+
<h2>Code Library</h2>
4040
</header>
4141
<div class="panel-body">
4242
<p>The code library is a collection of reusable components and classes along with a solitary IDE extension.</p>
@@ -52,13 +52,13 @@ <h3>Code Library</h3>
5252
<div class="col-sm-6 col-lg-4">
5353
<div class="panel panel-default">
5454
<header class="panel-heading" id="snippets">
55-
<h3>Code Snippets</h3>
55+
<h2>Code Snippets</h2>
5656
</header>
5757
<div class="panel-body">
5858
<p>There are two main sources of code snippets:</p>
59-
<h4>Code Snippets Database</h4>
59+
<h3>Code Snippets Database</h3>
6060
<p>Contains hundreds of useful Pascal routines, classes, types etc.</p>
61-
<h4>SWAG</h4>
61+
<h3>SWAG</h3>
6262
<p>A clone of the old <strong>S</strong>ource<strong>W</strong>are <strong>A</strong>rchive <strong>G</strong>roup database. It's dated but still contains some useful information.</em>
6363
</div>
6464
</div>
@@ -72,7 +72,7 @@ <h4>SWAG</h4>
7272
<div class="col-sm-6 col-lg-4">
7373
<div class="panel panel-default">
7474
<header class="panel-heading" id="articles">
75-
<h3>Articles</h3>
75+
<h2>Articles</h2>
7676
</header>
7777
<div class="panel-body">
7878
<p>Several full length articles explaining various aspects of Delphi programming.</p>
@@ -89,7 +89,7 @@ <h3>Articles</h3>
8989
<div class="col-sm-6 col-lg-4">
9090
<div class="panel panel-default">
9191
<header class="panel-heading" id="tips">
92-
<h3>Hints &amp; Tips</h3>
92+
<h2>Hints &amp; Tips</h2>
9393
</header>
9494
<div class="panel-body">
9595
<p>A collection of hundreds of hints and tips harvested from all over the web.</p>
@@ -102,7 +102,7 @@ <h3>Hints &amp; Tips</h3>
102102
<div class="col-sm-6 col-lg-4">
103103
<div class="panel panel-default">
104104
<header class="panel-heading" id="docs">
105-
<h3>Documentation</h3>
105+
<h2>Documentation</h2>
106106
</header>
107107
<div class="panel-body">
108108
<p>There's a documentation wiki containing:</p>

programs.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ <h1 roll="heading">
1717
<div class="col-sm-6">
1818
<div class="panel panel-default {% if program.mothballed %}panel-warning{% endif %}">
1919
<header class="panel-heading" id="{{ program.id | escape }}-head">
20-
<h3>{{ program.title | escape }}</h3>
20+
<h2>{{ program.title | escape }}</h2>
2121
</header>
2222
<div class="panel-body">
2323
<p>{{ program.summary | escape }}</p>

0 commit comments

Comments
 (0)