random commit message, read it yourself

This commit is contained in:
Breadway 2026-07-22 11:57:53 +08:00
commit 6fc834a27d
15 changed files with 776 additions and 0 deletions

16
templates/base.html Normal file
View file

@ -0,0 +1,16 @@
<!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>