Basic page setup
- Add bootstrap - Add other pages - (responsive) navbar with links to each page
This commit is contained in:
5
pages/history.html
Normal file
5
pages/history.html
Normal file
@@ -0,0 +1,5 @@
|
||||
{% extends "base.html" %}
|
||||
{% block title %}History{% endblock %}
|
||||
{% block history_active %}active{% endblock %}
|
||||
{% block main %}
|
||||
{% endblock %}
|
||||
@@ -1,5 +1,6 @@
|
||||
{% extends "base.html" %}
|
||||
{% block title %}Home{% endblock %}
|
||||
{% block home_active %}active{% endblock %}
|
||||
{% block main %}
|
||||
<h1>Some body content</h1>
|
||||
{% endblock %}
|
||||
|
||||
6
pages/visit.html
Normal file
6
pages/visit.html
Normal file
@@ -0,0 +1,6 @@
|
||||
{% extends "base.html" %}
|
||||
{% block title %}Visit{% endblock %}
|
||||
{% block visit_active %}active{% endblock %}
|
||||
{% block main %}
|
||||
{% endblock %}
|
||||
|
||||
Reference in New Issue
Block a user