diff options
author | Andinus <andinus@nand.sh> | 2022-06-10 00:30:39 +0530 |
---|---|---|
committer | Andinus <andinus@nand.sh> | 2022-06-10 00:30:39 +0530 |
commit | 1ac31ef10cc799f3cb7fc94d34178290a4e8dc00 (patch) | |
tree | 52bc9eca8fc2a1e230ff13b7875b5759d39c48e7 /lib/Crater | |
parent | 2085b4cac3a86d59360531d48251c8ab39dec0dd (diff) | |
download | crater-1ac31ef10cc799f3cb7fc94d34178290a4e8dc00.tar.gz |
CSS & Image Optimzations, Print password
- Prints password required to access. - will-change lets the browser prepare for those changes in advance. - loading="lazy" enables lazy loading on images. - column-fill: balance -- not an optimization.
Diffstat (limited to 'lib/Crater')
-rw-r--r-- | lib/Crater/Service.rakumod | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Crater/Service.rakumod b/lib/Crater/Service.rakumod index c0bdd7a..657d77b 100644 --- a/lib/Crater/Service.rakumod +++ b/lib/Crater/Service.rakumod @@ -17,6 +17,7 @@ sub MAIN( ) is export { put "Initialized: {now - INIT now}"; put "Gallery: {$directory.absolute}"; + put "Password: $password"; my %conf = from-toml($config.slurp); %conf<server><host> //= %*ENV<CRATER_HOST>; |