diff options
Diffstat (limited to 'templates/header.html')
| -rw-r--r-- | templates/header.html | 19 | 
1 files changed, 19 insertions, 0 deletions
| diff --git a/templates/header.html b/templates/header.html new file mode 100644 index 0000000..b3a4049 --- /dev/null +++ b/templates/header.html @@ -0,0 +1,19 @@ +<header> +	<div> +		<img src="/logo.png"> +		{% if title is defined %} +		<h1>{{ title }}</h1> +		{% else %} +		<h1>rgoncalves.se</h1> +		{% endif %} +	</div> +	<nav> +		  +		<a href="/">home</a> +		<a href="/writeups/">writeups</a> +		<a href="/services/">services</a> +		<a href="/public">public</a> +		<a href="http://git.rgoncalves.se">git</a> +		<a href="https:/gitlab.com/rgoncalves.se/infrastructure/">infrastructure</a> +	</nav> +</header> |