diff options
| author | Autumn <git@autumnfo.rest> | 2026-04-27 22:09:16 +0100 |
|---|---|---|
| committer | Autumn <git@autumnfo.rest> | 2026-04-27 22:09:16 +0100 |
| commit | 3b117515bac80de02e6dd89b865bf99e4e3a974d (patch) | |
| tree | 146f42ccd088c09a9108aa655cdec3f1385f65ef /src/pages/index.php | |
| parent | 1009226adb6915d0cbad7775088418916585c97e (diff) | |
[pages] switch to php template
Diffstat (limited to 'src/pages/index.php')
| -rw-r--r-- | src/pages/index.php | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/src/pages/index.php b/src/pages/index.php index 10753bb..152b9ff 100644 --- a/src/pages/index.php +++ b/src/pages/index.php @@ -1,22 +1,20 @@ -<!DOCTYPE html> +<?php -<html> + $page_title = "home"; - <head> + ob_start(); - <meta charset="UTF-8"> - <meta name="viewport" content="width=device-width, initial-scale=1.0"> +?> - <title>home | autumn's forest</title> +<p>welcome to autumn's forest :3</p> +<p>a bit about me: i'm somewhere between a nerdy transbian and a aroace foxgirlthing. i'll pad this out at a later date, i promise</p> +<p>this site is a work-in-progress - my last website was based off of the MacOS 9 theme & window layout. this was too much of a pain to deal with (and i lost my MacOS 9 icon pack and idk where to get them again :[) so i'm doing something different here.</p> +<p>for now, if you need me you can contact me at <a href="mailto:contact@autumnfo.rest">contact@autumnfo.rest</a>, or <a href="/blog/2026-04-27">check out my singular test blog post</a>!</p> - </head> +<?php - <body> + $page_content = ob_get_clean(); - <p>welcome to autumn's forest :3</p> - <p>a bit about me: i'm somewhere between a nerdy transbian and a aroace foxgirlthing. i'll pad this out at a later date, i promise</p> - <p>this site is a work-in-progress - my last website was based off of the MacOS 9 theme & window layout. this was too much of a pain to deal with (and i lost my MacOS 9 icon pack and idk where to get them again :[) so i'm doing something different here.</p> - <p>for now, if you need me you can contact me at <a href="mailto:contact@autumnfo.rest">contact@autumnfo.rest</a>, or <a href="/blog/2026-04-27">check out my singular test blog post</a>!</p> + include "_template.php"; - </body> -</html> +?> |
