This repository has been archived on 2025-03-17. You can view files and clone it, but cannot push or open issues or pull requests.
website/templates/layout.html
Rupus Reinefjord a528892ac8 initial commit
2018-01-11 23:54:26 +01:00

11 lines
285 B
HTML

{% extends 'base.html' %}
{% set navbar = [
(url_for('index'), 'index', 'Home'),
(url_for('photography'), 'photo', 'Photography'),
(url_for('me'), 'me', 'Find me')
] %}
{% block header %}
<h1><a href="{{ url_for('index') }}" class="nav-item">rupus reinefjord</a></h1>
{% endblock %}