aboutsummaryrefslogtreecommitdiff
path: root/includes/core/Metadata.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/core/Metadata.php')
-rw-r--r--includes/core/Metadata.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/includes/core/Metadata.php b/includes/core/Metadata.php
new file mode 100644
index 0000000..ce2dc2d
--- /dev/null
+++ b/includes/core/Metadata.php
@@ -0,0 +1,13 @@
+<?php
+
+namespace WebCore\GUI;
+
+class Metadata {
+ public static function title($title = null): string {
+ if (isset($title)) {
+ return "$title | Minteck's Website";
+ } else {
+ return "Minteck's Website";
+ }
+ }
+} \ No newline at end of file