forked from Ugric/cov-to-ics
change to use jinja2 and stop saving file and then reading the data
This commit is contained in:
21
templates/base.jinja
Normal file
21
templates/base.jinja
Normal file
@@ -0,0 +1,21 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<link rel="icon" type="image/png" sizes="96x96" href="{{ url_for('static', filename='favicon-96x96.png') }}">
|
||||
<link rel="icon" type="image/svg+xml" href="{{ url_for('static', filename='favicon.svg') }}">
|
||||
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="{{ url_for('static', filename='apple-touch-icon.png') }}">
|
||||
<meta name="apple-mobile-web-app-title" content="Timtabla">
|
||||
<link rel="manifest" href="{{ url_for('static', filename='site.webmanifest') }}">
|
||||
<meta charset="UTF-8">
|
||||
<title>Timtabla{% if page_title|trim %} - {{ page_title|trim }}{% endif %}</title>
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
|
||||
{% block head %}{% endblock %}
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
</body>
|
||||
{% block body %}{% endblock %}
|
||||
</html>
|
||||
Reference in New Issue
Block a user