46 lines
No EOL
1.5 KiB
HTML
46 lines
No EOL
1.5 KiB
HTML
{% load static %}
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<!-- Required meta tags -->
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<link href="https://fontproxy.kumi.systems/css?family=Roboto:300,400&display=swap" rel="stylesheet">
|
|
|
|
<link href="https://fontproxy.kumi.systems/css?family=Poppins:300,400,500&display=swap" rel="stylesheet">
|
|
|
|
|
|
<link rel="stylesheet" href="{% static "vendor/css/icomoon.css" %}">
|
|
|
|
<link href='{% static "vendor/css/fullcalendar.css" %}' rel='stylesheet' />
|
|
<link href='{% static "vendor/css/daygrid.css" %}' rel='stylesheet' />
|
|
|
|
|
|
<!-- Bootstrap CSS -->
|
|
<link rel="stylesheet" href=" {% static "vendor/css/bootstrap.min4.2.1.css" %}">
|
|
|
|
<!-- Style -->
|
|
<link rel="stylesheet" href="{% static "vendor/css/calendar.css" %}">
|
|
|
|
<title>JourneyJoker Calendar</title>
|
|
</head>
|
|
<body>
|
|
|
|
|
|
<div class="content">
|
|
<div id='calendar'></div>
|
|
</div>
|
|
|
|
|
|
|
|
<script src="{% static "vendor/js/jquery-3.3.1.min.js" %}"></script>
|
|
<script src="{% static "vendor/js/popper.min.js" %}"></script>
|
|
<script src="{% static "vendor/js/bootstrap.min4.2.1.js" %}"></script>
|
|
|
|
<script src='{% static "vendor/js/fullcalendar.js" %}'></script>
|
|
<script src='{% static "vendor/js/interaction.js" %}'></script>
|
|
<script src='{% static "vendor/js/daygrid.js" %}'></script>
|
|
|
|
<script src="{% static "partners/js/calendar.js" %}"></script>
|
|
</body>
|
|
</html> |