aboutsummaryrefslogtreecommitdiff
path: root/src/pages/_template.php
diff options
context:
space:
mode:
authorAutumn <git@autumnfo.rest>2026-04-27 22:09:16 +0100
committerAutumn <git@autumnfo.rest>2026-04-27 22:09:16 +0100
commit3b117515bac80de02e6dd89b865bf99e4e3a974d (patch)
tree146f42ccd088c09a9108aa655cdec3f1385f65ef /src/pages/_template.php
parent1009226adb6915d0cbad7775088418916585c97e (diff)
[pages] switch to php template
Diffstat (limited to 'src/pages/_template.php')
-rw-r--r--src/pages/_template.php19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/pages/_template.php b/src/pages/_template.php
new file mode 100644
index 0000000..424a4fd
--- /dev/null
+++ b/src/pages/_template.php
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+
+<html>
+
+ <head>
+
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+
+ <title><?php print $page_title ?> | autumn's forest</title>
+
+ </head>
+
+ <body>
+
+ <?php print $page_content ?>
+
+ </body>
+</html>