Skip to content
Permalink
Browse files
templates
  • Loading branch information
memica committed Mar 17, 2020
1 parent 88c0653 commit 1f55a984e38cc05861da3f4fc3fb02de1b64e142
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 0 deletions.
@@ -0,0 +1,18 @@
{% extends 'base.html' %}

<!-- TITLE -->
{% block title %} {% endblock %}

<!-- JS -->
{% block basejs %}
{% endblock %}

<!-- CSS -->
{% block basecss %}
{% endblock %}

<!-- BODY -->
{% block basebody %}
<div class="container">
</div>
{% endblock %}
@@ -0,0 +1,40 @@
{% extends 'base_page.html' %}

<!-- TITLE -->
{% block title %} {% endblock %}

<!-- JS -->
{% block js %}
{% endblock %}

<!-- CSS -->
{% block css %}
{% endblock %}

<!-- BUTTON -->
{% block b1 %}
<form action="profile" method="GET">
<button class="main_button">Profile</button>
</form>
{% endblock %}

{% block b2 %}
<form action="{{url_for('map.index')}}" method="GET">
<button class="main_button">Map</button>
</form>
{% endblock %}

{% block b3 %}
<form action="test" method="GET">
<button class="main_button">Test</button>
</form>
{% endblock %}

<!-- Body -->
{% block body %}
<div class="content_main">
</div>
{% endblock %}



0 comments on commit 1f55a98

Please sign in to comment.