diff options
author | Tommy Nguyen <remyabel@gmail.com> | 2019-02-21 23:33:27 -0500 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-02-22 11:39:28 -0500 |
commit | 110e65d6cca74179515eed729ac255cdc6fd9ae6 (patch) | |
tree | f6ce32c259e15914d6aca383a38a1b4219b4630a | |
parent | e7f8bb102be285c729204adbf025f5d55ea9c25a (diff) | |
download | sr.ht-docs-110e65d6cca74179515eed729ac255cdc6fd9ae6.tar.gz |
Add missing id attribute to header elements
This ensures that the sidebar links will now point to something.
-rw-r--r-- | index.html | 10 | ||||
-rw-r--r-- | tutorials/index.html | 4 |
2 files changed, 7 insertions, 7 deletions
@@ -18,7 +18,7 @@ dt { <div class="row event-row"> <div class="col-md-6 event-list"> <div class="event"> - <h3>Start here!</h3> + <h3 id="start-here">Start here!</h3> <p> New here? We have some great tutorials to introduce you to the site. </p> @@ -30,7 +30,7 @@ dt { </a> </div> <div class="event"> - <h3>General documentation</h3> + <h3 id="general-documentation">General documentation</h3> <p> Information on billing, terms of service, privacy policy, and so on. </p> @@ -44,7 +44,7 @@ dt { </div> <div class="col-md-6 event-list"> <div class="event"> - <h3>Getting help</h3> + <h3 id="getting-help">Getting help</h3> <p> Need support? There are several resources available to you. </p> @@ -56,7 +56,7 @@ dt { </a> </div> <div class="event"> - <h3>Developers & admins</h3> + <h3 id="developers-amp-admins">Developers & admins</h3> <p> Hacking on or deploying sourcehut yourself? Resources here. </p> @@ -73,7 +73,7 @@ dt { <strong>Notice</strong>: sr.ht documentation is a work in progress, and is incomplete in many places. </div> -<h3>Service Documentation</h3> +<h3 id="service-documentation">Service Documentation</h3> <dl class="row"> <div class="col-md-6"> <dt> diff --git a/tutorials/index.html b/tutorials/index.html index 5175c8f..b1e9be6 100644 --- a/tutorials/index.html +++ b/tutorials/index.html @@ -9,7 +9,7 @@ </style> <div class="event-list"> <div class="event" style="margin-left: -0.5rem; margin-right: -0.5rem;"> - <h3>Setting up your account & first git repository</h3> + <h3 id="setting-up-your-account-amp-first-git-repository">Setting up your account & first git repository</h3> <p> This tutorial is recommended as the first stop for any new user. </p> @@ -22,7 +22,7 @@ </div> </div> <div class="tutorial"> - <h3>Getting started with builds.sr.ht</h3> + <h3 id="getting-started-with-buildssrht">Getting started with builds.sr.ht</h3> <p> Running your first few jobs on our continuous integration platform, builds.sr.ht. |