elf-notes/templates/base.html

28 lines
714 B
HTML

<!DOCTYPE html>
<html lang="{{ config.extra.language_code | default(value="en-US") }}">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
{% block styles %}
<link rel="stylesheet" href="{{ get_url(path="index.css") | safe }}">
{% endblock %}
{% block seo %}{% endblock %}
</head>
<body>
{% block body %}
{% include "components/sitebar.html" %}
{% block content %}
{% block header %}
{% endblock header %}
{% block main %}
{% endblock main %}
{% endblock content %}
{% block footer %}
{% endblock footer %}
{% endblock body %}
</body>
</html>