28 lines
1.0 KiB
HTML
28 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/buttons.css') }}" />
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}" />
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/alerts.css') }}" />
|
|
<link href="http://fonts.cdnfonts.com/css/uk-number-plate" rel="stylesheet">
|
|
|
|
<!-- Inter font set used across the whole page -->
|
|
<link rel="preconnect" href="https://rsms.me/">
|
|
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
|
|
<title>WMGZON</title>
|
|
</head>
|
|
<body>
|
|
{% include 'header.html' %}
|
|
|
|
<div class="container">
|
|
{% if category is defined %}
|
|
{% set include_file = category+".html" %}
|
|
{% include include_file ignore missing %}
|
|
{% endif %}
|
|
|
|
{% include content %}
|
|
</div>
|
|
</body>
|
|
</html> |