bugfix: standardize metadata tags

secret pages get a noindex while standard pages get a description tag
This commit is contained in:
2026-06-19 15:14:04 -07:00
parent 96011d6454
commit 314214724f
6 changed files with 36 additions and 3 deletions
+25 -1
View File
@@ -2,8 +2,9 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="description" content="Tech, Chunibyo & Other Delusions" />
<meta name="theme-color" content="#4D58FF">
<link rel="icon" href="{{ include 'image/png' '/include/favicon.png' }}" />
<title>Blog &bull; pancakz.net</title>
@@ -15,7 +16,30 @@
</head>
<body>
{{ include 'noscript' '/include/noscript.html' }}
<noscript>
<style>
div.layout-wrapper {
display: none;
}
</style>
</noscript>
<div class="layout-wrapper">
<div class="layout-navigation">
<div class="container-actions">
<button>Homepage</button>
<button>Home</button>
</div>
<div class="container-tags"></div>
<div class="container-chapters"></div>
</div>
<div class="layout-content">
<div class="container-articles"></div>
<div class="container-content"></div>
</div>
</div>
</body>