diff options
| author | moderndevslulw <moderndevslulw@alright.party> | 2025-07-04 18:15:17 +0500 |
|---|---|---|
| committer | moderndevslulw <moderndevslulw@alright.party> | 2025-07-04 18:15:17 +0500 |
| commit | 3efe04aa1a50a9b3227eb3b060ce73e16ea3334b (patch) | |
| tree | 96a5159fe4e2b598bc571c339349adafb83cc36d /public/index.php | |
| parent | 0ea64157c85156c4a3404fd11c6fb687f5eb613d (diff) | |
feat: header and footer
Diffstat (limited to 'public/index.php')
| -rw-r--r-- | public/index.php | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/public/index.php b/public/index.php index ca7f117..b0fa818 100644 --- a/public/index.php +++ b/public/index.php @@ -1,3 +1,6 @@ +<?php +include_once $_SERVER['DOCUMENT_ROOT'] . '/../lib/partials.php'; +?> <html> <head> @@ -9,8 +12,14 @@ <body> <main> - <h1>test</h1> + <?php html_navigation_bar() ?> + + <content> + <h1>test</h1> + </content> </main> + + <?php html_big_footer() ?> </body> </html>
\ No newline at end of file |
