27 lines
719 B
HTML
27 lines
719 B
HTML
<html>
|
|
|
|
<head>
|
|
<!-- Required meta tags -->
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
|
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
|
|
<style>
|
|
.fakeimg {
|
|
height: 200px;
|
|
background: #aaa;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
{% block contents %}
|
|
{% endblock %}
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|