IW4M-Admin/Master/master/templates/layout.html

46 lines
1.6 KiB
HTML
Raw Normal View History

2018-04-18 16:46:53 -04:00
<!DOCTYPE html>
2018-04-21 18:18:20 -04:00
<html class="bg-dark">
2018-04-18 16:46:53 -04:00
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IW4MAdmin Master | {{ title }}</title>
2018-04-21 18:18:20 -04:00
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/open-iconic/1.1.1/font/css/open-iconic-bootstrap.min.css" integrity="sha256-BJ/G+e+y7bQdrYkS2RBTyNfBHpA9IuGaPmf9htub5MQ=" crossorigin="anonymous" />
<style type="text/css">
.active {
stroke-width: initial !important;
}
.oi:hover {
color: #fff !important;
}
.dot {
opacity: 0;
padding: 5px;
}
.dot:hover {
opacity: 1;
}
.tooltip-box {
fill: #343a40 !important;
}
2018-04-21 18:18:20 -04:00
</style>
2018-04-18 16:46:53 -04:00
</head>
2018-04-21 18:18:20 -04:00
<body class="bg-dark">
2018-04-18 16:46:53 -04:00
2018-04-21 18:18:20 -04:00
<div class="container body-content bg-dark">
2018-04-18 16:46:53 -04:00
{% block content %}{% endblock %}
2018-04-21 18:18:20 -04:00
2018-04-18 16:46:53 -04:00
</div>
2018-04-21 18:18:20 -04:00
<script src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
2018-04-18 16:46:53 -04:00
{% block scripts %}{% endblock %}
</body>
</html>