aboutsummaryrefslogtreecommitdiff
path: root/src/pages
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages')
-rw-r--r--src/pages/blog/_template.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/pages/blog/_template.php b/src/pages/blog/_template.php
new file mode 100644
index 0000000..dbaeff6
--- /dev/null
+++ b/src/pages/blog/_template.php
@@ -0,0 +1,16 @@
+<?php
+
+ $blog_title = "TEMPLATE";
+
+ ob_start();
+?>
+
+<h1>TEMPLATE PAGE</h1>
+
+<?php
+
+ $blog_content = ob_get_clean();
+
+ include "_builder.php";
+
+?>