MaterialMind / templates /base.html
Azizahalq's picture
Update templates/base.html
e02a1b1
raw
history blame contribute delete
496 Bytes
<!-- templates/base.html -->
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>MaterialMind</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="{{ url_for('static', filename='styles.css') }}" rel="stylesheet">
</head>
<body>
<header class="wrap hero">
<h1>MaterialMind</h1>
</header>
<main class="wrap">
{% block content %}{% endblock %}
</main>
<footer class="wrap muted">
<p>© MaterialMind</p>
</footer>
</body>
</html>