WordMord/scripts/templates/base.html

24 lines
592 B
HTML
Raw Normal View History

2022-01-31 19:16:13 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
2022-02-09 23:36:08 +01:00
<meta charset="UTF-8">
2022-01-31 19:16:13 +01:00
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
2022-02-09 23:36:08 +01:00
href="/static/styles.css"
2022-01-31 19:16:13 +01:00
/>
2022-02-09 23:36:08 +01:00
<!--href="{{ url_for('static', filename='styles.css') }}"-->
2022-01-31 19:16:13 +01:00
<title>{% block title %} {% endblock %} WordMord</title>
</head>
<body>
<!-- <nav class="navbar navbar-expand-md navbar-light">
<a href="/">Wordmord</a>
<a href="/about">About</a>
</nav> -->
<div class="content">
{% block content %} {% endblock %}
</div>
</body>
2022-02-09 23:36:08 +01:00
</html>