event timeline
This commit is contained in:
commit
fc1a929428
53 changed files with 806 additions and 0 deletions
19
app/templates/base.html
Normal file
19
app/templates/base.html
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
<!doctype html>{% load sass_tags static %}
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
|
||||
<title>
|
||||
{% block title %}
|
||||
{% endblock title %}
|
||||
</title>
|
||||
<link href="{% sass_src 'css/style.scss' %}" rel="stylesheet" type="text/css">
|
||||
{% block head %}{% endblock head %}
|
||||
</head>
|
||||
<body class="{% block body_class%}{% endblock %}">
|
||||
<main>
|
||||
{% block main %}{% endblock main %}
|
||||
</main>
|
||||
{% block end %}{% endblock end %}
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue