mirror of
https://github.com/simon987/Simple-Incremental-Search-Tool.git
synced 2025-04-18 17:56:44 +00:00
74 lines
2.4 KiB
HTML
74 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{% block title %}Default title{% endblock title %}</title>
|
|
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no' />
|
|
|
|
<!-- Demo Dependencies -->
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js" type="text/javascript"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
|
|
<script src="/static/js/Chart.min.js" type="text/javascript"></script>
|
|
|
|
<!-- Dashboard -->
|
|
{# <link rel="stylesheet" type="text/css" href="/static/css/keen-dashboards.css" />#}
|
|
<link href="https://use.fontawesome.com/releases/v5.0.6/css/all.css" rel="stylesheet" type="text/css">
|
|
|
|
|
|
<style>
|
|
.info-table {
|
|
width: 100%;
|
|
}
|
|
|
|
.info-table pre {
|
|
padding: 6px;
|
|
margin: 4px;
|
|
}
|
|
|
|
.info-table td {
|
|
padding: 4px;
|
|
}
|
|
|
|
.card {
|
|
margin-top: 1em;
|
|
}
|
|
|
|
{# .info-table tr:nth-child(even) {#}
|
|
{# background-color: #fafafa;#}
|
|
{# }#}
|
|
|
|
{# todo: box-shadow 0 1px 10px 1px #1AC8DE#}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div>
|
|
<span>Navbar1</span>
|
|
</div>
|
|
|
|
{% block alert_messages %}
|
|
|
|
|
|
{% with messages = get_flashed_messages(with_categories=true) %}
|
|
{% if messages %}
|
|
<div class="container">
|
|
{% for category, message in messages %}
|
|
<div class="alert alert-{{ category }}">
|
|
<a href="#" class="close" data-dismiss="alert" aria-label="close">×</a>
|
|
{{ message | safe }}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
{% endwith %}
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
{% endblock body %}
|
|
|
|
|
|
</body>
|
|
</html>
|