Improved block selection
This commit is contained in:
parent
6aecde3264
commit
948e525ff0
Binary file not shown.
After Width: | Height: | Size: 504 KiB |
Binary file not shown.
Before Width: | Height: | Size: 33 KiB |
|
@ -0,0 +1,11 @@
|
|||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col justify-content-center text-center">
|
||||
<nav>
|
||||
<a href="#">Home</a>
|
||||
<a href="#">About</a>
|
||||
<a href="#">Donate</a>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
|
@ -0,0 +1,11 @@
|
|||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col justify-content-center text-center">
|
||||
<nav>
|
||||
<a href="#">Home</a>
|
||||
<a href="#">About</a>
|
||||
<a href="#">Donate</a>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
|
@ -1,12 +0,0 @@
|
|||
{% extends "layout.html" %}
|
||||
{% block header_menu %}
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col justify-content-center text-center">
|
||||
<h1>Hello World!</h1>
|
||||
<p>Using dark themed Bootstrap 4 css files...</p>
|
||||
<p>Themes: <a href="https://bootswatch.com/" target="_blank">Bootswatch</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock header_menu %}
|
|
@ -1,10 +1,10 @@
|
|||
{% extends "layout.html" %}
|
||||
|
||||
{% block body_header %}
|
||||
<h1 style=" position: fixed; top: 0em;">Footer</h1>
|
||||
{% endblock body_header %}
|
||||
{% block body_header_additional %}
|
||||
<h1 style=" position: fixed; top: 0em;">Header</h1>
|
||||
{% endblock body_header_additional %}
|
||||
|
||||
{% block content %}
|
||||
{% block body_content %}
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col justify-content-center text-center">
|
||||
|
@ -14,16 +14,16 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock content %}
|
||||
{% endblock body_content %}
|
||||
|
||||
|
||||
{% block body_footer %}
|
||||
{% block body_footer_additional %}
|
||||
<h1 style=" position: fixed; bottom: 0em;">Footer</h1>
|
||||
{% endblock body_footer %}
|
||||
{% endblock body_footer_additional %}
|
||||
|
||||
{% block body_scripts %}
|
||||
{% block body_scripts_additional %}
|
||||
<script src="{{ url_for('static', filename='js/ui-logic.js')}}"></script>
|
||||
<script src="{{ url_for('static', filename='js/post-ajax.js')}}"></script>
|
||||
<script src="{{ url_for('static', filename='js/ajax.js')}}"></script>
|
||||
<script src="{{ url_for('static', filename='js/events.js')}}"></script>
|
||||
{% endblock body_scripts %}
|
||||
{% endblock body_scripts_additional %}
|
||||
|
|
|
@ -8,39 +8,60 @@
|
|||
<title>App</title>
|
||||
{% endif %}
|
||||
|
||||
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.png') }}">
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/bootstrap/bootstrap.min.css')}}">
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/bootstrap/bootstrap-datepicker.css')}}">
|
||||
|
||||
<!-- Site CSS -->
|
||||
{% block header_css %}
|
||||
<!-- Bootstrap CSS -->
|
||||
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/bootstrap/bootstrap.min.css')}}">
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/bootstrap/bootstrap-datepicker.css')}}">
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/main.css')}}">
|
||||
{% block header_css_additional %}
|
||||
{% endblock header_css_additional %}
|
||||
{% endblock %}
|
||||
|
||||
{% block header_scripts %}
|
||||
{% block header_scripts_additional %}
|
||||
{% endblock header_scripts_additional %}
|
||||
{% endblock %}
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<img id="bg" src="{{ url_for('static', filename='imgs/backgrounds/background.jpg')}}" alt="{{title}} Background Logo" />
|
||||
|
||||
|
||||
{% block body_header %}
|
||||
{% include "body-header.html" %}
|
||||
|
||||
{% block body_header_additional %}
|
||||
{% endblock body_header_additional%}
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
|
||||
{% block body_content %}
|
||||
{% block body_content_additional %}
|
||||
{% endblock body_content_additional%}
|
||||
{% endblock %}
|
||||
|
||||
|
||||
{% block body_footer %}
|
||||
{% include "body-footer.html" %}
|
||||
|
||||
{% block body_footer_additional %}
|
||||
{% endblock body_footer_additional%}
|
||||
{% endblock %}
|
||||
|
||||
<!-- For Bootstrap in this exact order... -->
|
||||
<script src="{{ url_for('static', filename='js/bootstrap/jquery-3.3.1.slim.min.js')}}"></script>
|
||||
<script src="{{ url_for('static', filename='js/bootstrap/popper.min.js')}}"></script>
|
||||
<script src="{{ url_for('static', filename='js/bootstrap/bootstrap.min.js')}}"></script>
|
||||
|
||||
<!-- For DatePicker -->
|
||||
<script src="{{ url_for('static', filename='js/bootstrap/moment.min.js')}}"></script>
|
||||
<script src="{{ url_for('static', filename='js/bootstrap/bootstrap-datepicker.min.js')}}"></script>
|
||||
|
||||
{% block body_scripts %}
|
||||
<!-- For Bootstrap in this exact order... -->
|
||||
<script src="{{ url_for('static', filename='js/bootstrap/jquery-3.3.1.slim.min.js')}}"></script>
|
||||
<script src="{{ url_for('static', filename='js/bootstrap/popper.min.js')}}"></script>
|
||||
<script src="{{ url_for('static', filename='js/bootstrap/bootstrap.min.js')}}"></script>
|
||||
|
||||
<!-- For DatePicker -->
|
||||
<script src="{{ url_for('static', filename='js/bootstrap/moment.min.js')}}"></script>
|
||||
<script src="{{ url_for('static', filename='js/bootstrap/bootstrap-datepicker.min.js')}}"></script>
|
||||
{% block body_scripts_additional %}
|
||||
{% endblock body_scripts_additional%}
|
||||
{% endblock %}
|
||||
|
||||
</body>
|
||||
|
|
Loading…
Reference in New Issue