crunk-columns/templates/base.html

16 lines
513 B
HTML
Raw Normal View History

2023-06-03 18:12:55 +02:00
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Title</title>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/base.css')}}">
2023-06-06 20:58:33 +02:00
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/template.css')}}">
2023-06-03 18:12:55 +02:00
<link rel="shortcut icon" href="{{ url_for('static', filename='icons/favicon.ico') }}">
</head>
<body>
{% block main %}
{% endblock main %}
</body>
</html>