initial commit
This commit is contained in:
commit
a528892ac8
46 changed files with 2152 additions and 0 deletions
11
templates/layout.html
Normal file
11
templates/layout.html
Normal file
|
@ -0,0 +1,11 @@
|
|||
{% 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 %}
|
Reference in a new issue