18 lines
676 B
HTML
18 lines
676 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>{% block title %}{% endblock %} - pecha.red</title>
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||
|
<!-- <link rel="stylesheet" href="https://kit-free.fontawesome.com/releases/latest/css/free.min.css"> -->
|
||
|
<link rel='stylesheet' type='text/css' href="{{ url_for('static', filename='style.css') }}" />
|
||
|
<!-- <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,700&display=swap"> -->
|
||
|
<!-- <script src="{{ url_for('static', filename='script.js') }}"></script> -->
|
||
|
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
{% block content %}{% endblock %}
|
||
|
</body>
|
||
|
</html>
|