1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-05-06 20:57:45 +00:00
kawari/resources/templates/layout.html
Joshua Goins f2c009b9a7 Add Bootstrap styling to most web pages
I haven't changed any of the content yet, only included the Boostrap CSS
and unified their base template.
2025-05-03 11:56:27 -04:00

10 lines
330 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}some website{% endblock %}</title>
<link href="/static/bootstrap.min.css" rel="stylesheet">
</head>
<body>{% block body %}{% endblock %}</body>
</html>