From b8176b5cbe0d84290a682e0922c8e512d94c836a Mon Sep 17 00:00:00 2001 From: Chris Coley <chris@codingallnight.com> Date: Sun, 23 Apr 2023 19:12:35 -0700 Subject: [PATCH] Add links between pages --- src/another-page.html | 4 ++++ src/index.html | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/src/another-page.html b/src/another-page.html index 5b0337a..2d12891 100644 --- a/src/another-page.html +++ b/src/another-page.html @@ -22,6 +22,10 @@ It was built on the <strong>%%BRANCH%%</strong> branch of the <a href="%%PROJECT_URL%%"><strong>%%PROJECT_NAMESPACE%%</strong></a> project. </p> + <p> + Go back to the <a href="index.html">homepage</a>. + </p> </body> </html> +<!-- vi: set ts=2 sw=2 et ft=html: --> diff --git a/src/index.html b/src/index.html index 1c4d06d..1717123 100644 --- a/src/index.html +++ b/src/index.html @@ -22,6 +22,10 @@ It was built on the <strong>%%BRANCH%%</strong> branch of the <a href="%%PROJECT_URL%%"><strong>%%PROJECT_NAMESPACE%%</strong></a> project. </p> + <p> + Go check out this <a href="another-page.html">other page</a>. + </p> </body> </html> +<!-- vi: set ts=2 sw=2 et ft=html: --> -- GitLab