breadway.dev/templates/base.html
2026-07-22 11:57:53 +08:00

16 lines
609 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 %}breadway.dev{% endblock title %}</title>
<meta name="description" content="Projects by Breadway">
<link rel="icon" type="image/svg+xml" href="{{ get_url(path="favicon.svg") }}">
<link rel="stylesheet" href="{{ get_url(path="css/tokens.css") }}">
<link rel="stylesheet" href="{{ get_url(path="css/base.css") }}">
<link rel="stylesheet" href="{{ get_url(path="css/layout.css") }}">
</head>
<body>
{% block content %}{% endblock content %}
</body>
</html>