feat: update template with new elements (#1)
Some checks failed
Build, check & Test / run (push) Failing after 1m8s

Reviewed-on: #1
This commit is contained in:
Florian Bouillon 2023-08-15 23:47:53 +00:00
parent 86e60516f9
commit bd880f0272
2 changed files with 41 additions and 26 deletions

View File

@ -28,7 +28,7 @@ http {
} }
# Plausible script # Plausible script
location /js/index.js { location /js/script.js {
# Change this if you use a different variant of the script # Change this if you use a different variant of the script
proxy_pass https://plausible.io/js/script.js; proxy_pass https://plausible.io/js/script.js;
proxy_set_header Host plausible.io; proxy_set_header Host plausible.io;
@ -48,5 +48,17 @@ http {
proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $host; proxy_set_header X-Forwarded-Host $host;
} }
# Media: images, icons, video, audio, HTC
location ~* \.(?:jpg|jpeg|gif|png|ico|cur|gz|svg|svgz|mp4|mp3|ogg|ogv|webp|webm|htc|woff2|woff)$ {
expires 1y;
access_log off;
}
# CSS and Javascript
location ~* \.(?:css|js)$ {
expires 1y;
access_log off;
}
} }
} }

View File

@ -1,25 +1,28 @@
--- ---
export interface Props { export interface Props {
title: string title: string
} }
import Favicon from '../components/Favicon/Favicon.astro' import Favicon from '../components/Favicon/Favicon.astro'
import IconSVG from '../assets/layouts/Base/favicon.svg' import IconSVG from '../assets/layouts/Base/favicon.svg'
import IconPNG from '../assets/layouts/Base/favicon.png' import IconPNG from '../assets/layouts/Base/favicon.png'
const { title } = Astro.props; const { title } = Astro.props;
--- ---
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta name="description" content="Astro description"> <meta name="description" content="Astro description">
<meta name="viewport" content="width=device-width" /> <meta name="viewport" content="width=device-width" />
<Favicon svg={IconSVG} png={IconPNG} icoPath="/favicon.ico" /> <!-- Analytics -->
<title>{title}</title> <script defer data-domain="example.com" src="/js/script.js"></script>
</head>
<body class="bg-gray-50"> <Favicon svg={IconSVG} png={IconPNG} icoPath="/favicon.ico" />
<slot /> <title>{title}</title>
</body> </head>
</html> <body class="bg-gray-50">
<slot />
</body>
</html>