Move navbar to separate file (and be the same across entire site)

This commit is contained in:
BBaoVanC 2020-12-17 00:33:48 -06:00
parent ffe43bc792
commit 194eb3ec64
Signed by: bbaovanc
GPG Key ID: 18089E4E3CCF1D3A
5 changed files with 13 additions and 20 deletions

View File

@ -30,10 +30,7 @@
<body>
<!--#include file="/header.html" -->
<div class="navbar">
<a href="/">Home</a>
</div>
<!--#include file="/navbar.html" -->
<div class="row">
<div class="main">

View File

@ -30,10 +30,7 @@
<body>
<!--#include file="/header.html" -->
<div class="navbar">
<a href="/">Home</a>
</div>
<!--#include file="/navbar.html" -->
<div class="row">
<div class="main">

View File

@ -23,9 +23,8 @@
<body>
<!--#include file="/header.html" -->
<div class="navbar">
<a href="/">Home</a>
</div>
<!--#include file="/navbar.html" -->
<div class="row">
<div class="main">
<h3>My GPG Key Fingerprints</h3>

View File

@ -27,15 +27,7 @@
<body>
<!--#include file="/header.html" -->
<div class="navbar">
<a href="/">Home</a>
<a href="https://searx.bbaovanc.com/" rel="noreferrer" target="_blank">My Searx Instance</a>
<a href="https://git.bbaovanc.com/bbaovanc" rel="noreferrer" target="_blank">My Git Repositories</a>
<a href="contact/">Contact Me</a>
<a href="fun/">Fun</a>
<a href="gpg-fingerprints/">GPG Fingerprints</a>
</div>
<!--#include file="/navbar.html" -->
<div class="row">
<div class="main">

8
navbar.html Normal file
View File

@ -0,0 +1,8 @@
<div class="navbar">
<a href="/">Home</a>
<a href="https://searx.bbaovanc.com/" rel="noreferrer" target="_blank">My Searx Instance</a>
<a href="https://git.bbaovanc.com/bbaovanc" rel="noreferrer" target="_blank">My Git Repositories</a>
<a href="contact/">Contact Me</a>
<a href="fun/">Fun</a>
<a href="gpg-fingerprints/">GPG Fingerprints</a>
</div>