22 lines
728 B
HTML
22 lines
728 B
HTML
{% include "header.html" %}
|
|
<body>
|
|
<h1 class="container" style="text-align: center">{{ data["title"] }}</h1>
|
|
<div class="" >
|
|
{% include "addForm.html" %}
|
|
</div>
|
|
<div class="container" id="memes">
|
|
{% include "list.html" %}
|
|
|
|
</div>
|
|
|
|
<!-- jQuery library -->
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
|
|
|
|
<!-- Popper JS -->
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
|
|
|
|
<!-- Latest compiled JavaScript -->
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
|
|
</body>
|
|
</html>
|