diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-02-26 10:24:43 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-02-26 11:22:13 -0500 |
| commit | e6fd79bad907c18e35fb2f99842b0ab62ed67114 (patch) | |
| tree | 0e178e58cd758203aedd9bc9915373ecec711e90 /src/web/_views/bucket | |
| parent | update license (diff) | |
| download | website-e6fd79bad907c18e35fb2f99842b0ab62ed67114.tar.gz website-e6fd79bad907c18e35fb2f99842b0ab62ed67114.tar.bz2 website-e6fd79bad907c18e35fb2f99842b0ab62ed67114.zip | |
start caching html pages, lower request tree chaining
Diffstat (limited to 'src/web/_views/bucket')
| -rw-r--r-- | src/web/_views/bucket/main.php | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/web/_views/bucket/main.php b/src/web/_views/bucket/main.php index aeb6cf3..b85c773 100644 --- a/src/web/_views/bucket/main.php +++ b/src/web/_views/bucket/main.php @@ -1,13 +1,13 @@ <?php /* Copyright (c) 2024 Freya Murphy */ ?> - <?php - $root='https://webring.bucketfish.me/redirect.html?to=%s&name=' . $name; - $this->view('head', $data); - if ($lightmode === 'true') { - echo $this->link_css('css/bucket_light.css'); - } else { - echo $this->link_css('css/bucket.css'); - } - ?> +<?php + $root='https://webring.bucketfish.me/redirect.html?to=%s&name=' . $name; + $this->view('head', $data); + if ($lightmode === 'true') { + echo embed_css_ext('css/bucket_light.css'); + } else { + echo embed_css_ext('css/bucket.css'); + } +?> <base target="_parent" /> </head> <body> |