You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
426 B
HTML
16 lines
426 B
HTML
5 years ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width">
|
||
|
<title>{% block title %}{{ config.title }}{% endblock title %}</title>
|
||
|
<link rel="stylesheet" href="/style.css" type="text/css">
|
||
|
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
||
|
</head>
|
||
|
<body>
|
||
|
{% block content %}
|
||
|
{{ section.content | safe }}
|
||
|
{% endblock content %}
|
||
|
</body>
|
||
|
</html>
|