20 lines
726 B
HTML
20 lines
726 B
HTML
<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> |