27 lines
965 B
HTML
27 lines
965 B
HTML
{% block head %}
|
|
<title>Quarter Homes Internal</title>
|
|
{% endblock %}
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/materialize.min.css') }}">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
|
|
|
|
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
|
|
<script type="text/javascript" src="{{ url_for('static', filename='js/materialize.min.js') }}"></script>
|
|
|
|
<script>
|
|
$(document).ready(function(){
|
|
$('.collapsible').collapsible();
|
|
});
|
|
</script>
|
|
|
|
{% block flash_messages %}
|
|
{% include "includes/flash_messages.html" %}
|
|
{% endblock %}
|
|
|
|
{% block body_content %}
|
|
{% include "includes/navbar.html" %}
|
|
{% block content %}
|
|
{% endblock %}
|
|
{% endblock %} |