summaryrefslogtreecommitdiffstats
path: root/templates/base.rs.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/base.rs.html')
-rw-r--r--templates/base.rs.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/templates/base.rs.html b/templates/base.rs.html
new file mode 100644
index 0000000..1b8e63b
--- /dev/null
+++ b/templates/base.rs.html
@@ -0,0 +1,19 @@
+@use super::statics::*;
+
+@(body: Content)
+
+<!DOCTYPE html>
+<html>
+
+<head>
+ <meta charset="UTF-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
+ <link rel="stylesheet" type="text/css" href="/static/style.css" />
+ <title>pinussy</title>
+</head>
+
+<body>
+ @:body()
+</body>
+
+</html>