website-content-updates #7

Open
caperren wants to merge 23 commits from website-content-updates into main
2 changed files with 5 additions and 5 deletions
Showing only changes of commit cf3b740907 - Show all commits

View File

@@ -12,12 +12,12 @@ http {
root /usr/share/nginx/html;
index index.html index.htm;
include /etc/nginx/mime.types;
include /etc/nginx/conf.d/_release_token.conf;
#include /etc/nginx/conf.d/_release_token.conf;
etag off;
#etag off;
add_header ETag "\"W/$release_token\"" always;
add_header Cache-Control "max-age=0, must-revalidate" always;
#add_header ETag "\"W/$release_token\"" always;
#add_header Cache-Control "max-age=0, must-revalidate" always;
gzip on;
gzip_min_length 1000;

View File

@@ -13,7 +13,6 @@ const pageTitle = Astro.props.title ? `${Astro.props.title} - Corwin Perren` : "
<link rel="icon" href="/favicon-solid.png" type="image/png"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>{pageTitle}</title>
<script src="../scripts/main.ts"></script>
</head>
<body class="bg-black text-white">
<Navbar/>
@@ -24,6 +23,7 @@ const pageTitle = Astro.props.title ? `${Astro.props.title} - Corwin Perren` : "
<slot/>
</main>
<Footer/>
<script src="../scripts/main.ts"></script>
</body>
</html>