Create app/templates/base.html
Browse files- app/templates/base.html +20 -0
app/templates/base.html
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<title>浣滄枃鎵规敼缁撴灉</title>
|
6 |
+
<style>
|
7 |
+
body { font-family: -apple-system, sans-serif; line-height: 1.6; max-width:1024px; margin:auto; padding:32px; }
|
8 |
+
code { background: #f5f5f5; padding: 2px 4px; border-radius: 4px; }
|
9 |
+
pre { background: #f5f5f5; padding: 10px; overflow-x: auto; }
|
10 |
+
blockquote { border-left: 4px solid #ddd; padding-left: 12px; color: #666; }
|
11 |
+
img { display:block;width:100%;max-width:100%;height:auto;margin:10px 0;object-fit:contain; }
|
12 |
+
.highlight-bracket { display:inline-block; background:#ffd6d6; }
|
13 |
+
.highlight-bracket-green { background:#d4f7d4; }
|
14 |
+
</style>
|
15 |
+
</head>
|
16 |
+
<body>
|
17 |
+
<h1>鎵规敼缁撴灉 #{{code}}</h1>
|
18 |
+
{{content}}
|
19 |
+
</body>
|
20 |
+
</html>
|