diff options
| author | 2022-03-03 10:11:01 +0100 | |
|---|---|---|
| committer | 2022-03-03 10:11:01 +0100 | |
| commit | 82624418d5940ef628a51ca07aa222073fa9a388 (patch) | |
| tree | 247c542ea5cf952889bd394d1bb3e3a32ee3932f /templates/blog-page.html | |
| parent | 12ddb91334e82c87f6318beea879eb53f1fd6f1c (diff) | |
change some things around
Diffstat (limited to 'templates/blog-page.html')
| -rw-r--r-- | templates/blog-page.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/templates/blog-page.html b/templates/blog-page.html index b8263e0..ddf34f0 100644 --- a/templates/blog-page.html +++ b/templates/blog-page.html @@ -3,6 +3,10 @@ {% block title %}{{ page.title }}{% endblock title %} {% block content %} + +<nav class="navbar"> + <a href="/">Home</a> <a href="../">Go Back</a> +</nav> <h1 class="title"> {{ page.title }} </h1> @@ -10,5 +14,4 @@ <hr> {{ page.content | safe }} -<hr> <a href="../">Go back</a> {% endblock content %} |