38 lines
1.3 KiB
HTML
38 lines
1.3 KiB
HTML
<!doctype html>
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>{{ config.SITE_TITLE }}</title>
|
|
<meta name="description" content="{{ config.SITE_DESCRIPTION }}">
|
|
<meta name="author" content="{{ config.SITE_AUTHOR }}">
|
|
|
|
<meta property="og:title" content="{{ config.SITE_TITLE }}">
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:url" content="{{ config.SITE_URL }}">
|
|
<meta property="og:description" content="{{ config.SITE_DESCRIPTION }}">
|
|
<meta property="og:image" content="{{ url_for('static', filename='images/base/og.png') }}">
|
|
|
|
<link rel="icon" href="{{ url_for('static', filename='images/base/favicon.ico') }}">
|
|
<link rel="icon" href="{{ url_for('static', filename='images/base/favicon.svg') }}" type="image/svg+xml">
|
|
<link rel="apple-touch-icon" href="{{ url_for('static', filename='images/base/apple-touch-icon.png') }}">
|
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
|
|
</head>
|
|
|
|
<body>
|
|
{% with messages = get_flashed_messages() %}
|
|
{% if messages %}
|
|
<ul class=flash-message>
|
|
{% for message in messages %}
|
|
<li>{{ message }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
{% endwith %}
|
|
{% block content %}
|
|
{% endblock content %}
|
|
</body>
|
|
</html>
|