Initial commit

This commit is contained in:
2019-12-14 19:07:29 +01:00
parent ef259cf158
commit 1c807c2af4
40 changed files with 9502 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
{% if title %}
<title>{{ title }} - Webug</title>
{% else %}
<title>Webug</title>
{% endif %}
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/fontawesome.min.css') }}">
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/rubik.font.css') }}">
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/main.css') }}">
{% block extend_head %}{% endblock %}
</head>
<body>
<main>
{% block content %}{% endblock %}
</main>
</body>
</html>