lumi2/lumi2/templates/base.html

29 lines
1.1 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/og.png') }}">
<link rel="icon" href="{{ url_for('static', filename='images/favicon.ico') }}">
<link rel="icon" href="{{ url_for('static', filename='images/favicon.svg') }}" type="image/svg+xml">
<link rel="apple-touch-icon" href="{{ url_for('static', filename='images/apple-touch-icon.png') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
</head>
<body>
{% block content %}
{% endblock content %}
</body>
</html>