contentmatcher/templates/partials/base.html

22 lines
454 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>contentmatcher</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body id="{% block name %}{% endblock %}">
{% block header %}
{% include 'partials/header.html' %}
{% endblock %}
{% block content %}{% endblock %}
{% block footer %}
{% include 'partials/footer.html' %}
{% endblock %}
{% include 'partials/flash.html' %}
</body>
</html>