diff options
| author | Freya Murphy <freya@freyacat.org> | 2025-02-07 15:35:47 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2025-02-07 15:35:47 -0500 |
| commit | 39e38a71528b7e7196ae4f227ebf399922a42dea (patch) | |
| tree | b7b0fa43a6704ba8969354dfa655a2d375699210 /web/parts/head.php | |
| parent | read (diff) | |
| download | rit.wtf-39e38a71528b7e7196ae4f227ebf399922a42dea.tar.gz rit.wtf-39e38a71528b7e7196ae4f227ebf399922a42dea.tar.bz2 rit.wtf-39e38a71528b7e7196ae4f227ebf399922a42dea.zip | |
updates
Diffstat (limited to 'web/parts/head.php')
| -rw-r--r-- | web/parts/head.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/web/parts/head.php b/web/parts/head.php new file mode 100644 index 0000000..c5d6f78 --- /dev/null +++ b/web/parts/head.php @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <base target="_blank" /> + <link rel="stylesheet" href="<?=ASSETS->css->main?>"> + <link rel="stylesheet" href="<?=ASSETS->css->anim?>"> + <?php if(isset($css)): ?> + <link rel="stylesheet" href="<?=$css?>"> + <?php endif; ?> + <title><?=$title?></title> + </head> + <body> |