40 lines
2.1 KiB
Twig
40 lines
2.1 KiB
Twig
{# =============================================================================
|
|
<HEAD>
|
|
=============================================================================
|
|
#}
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>{{ title | default('Welcome To Novaconium') }}</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
{# SEO & METADATA #}
|
|
<meta name="generator" content="Novaconium" />
|
|
<meta name="description" content="{{ description | default('No description given') }}">
|
|
<meta name="keywords" content="{{ keywords | default('website') }}">
|
|
<meta name="author" content="{{ author | default('anonymous') }}">
|
|
|
|
{# DARK MODE & THEME HINTS #}
|
|
<meta name="color-scheme" content="dark">
|
|
<meta name="theme-color" content="#FFFFFF">
|
|
|
|
{# OPEN GRAPH (OG) FOR SOCIAL SHARING #}
|
|
<meta property="og:title" content="{{ title | default('Welcome') }}">
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:url" content="{{ app_url | default(request.scheme ~ '://' ~ request.host) }}">
|
|
<meta property="og:image" content="{{ og_image | default('/icon.png') }}">
|
|
|
|
{# PWA & FAVICONS #}
|
|
<link rel="manifest" href="site.webmanifest">
|
|
<link rel="apple-touch-icon" href="/icon.png">
|
|
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><rect width='32' height='32' fill='%23000'/><text x='16' y='22' font-family='Orbitron,monospace' font-size='20' fill='%2300ff00' text-anchor='middle' dominant-baseline='middle'>N</text><circle cx='16' cy='16' r='2' fill='%2300ff00'/></svg>">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/path/to/favicon-32x32.png"> <!-- Fallback if needed -->
|
|
|
|
{# GOOGLE FONTS (CDN VIA PRECONNECT) #}
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="{{ fonts | default('https://fonts.googleapis.com/css2?family=VT323:wght@400&family=Fira+Code:wght@400;500&display=swap&family=Material+Icons:wght@400;500&display=swap') }}" rel="stylesheet">
|
|
|
|
{# STYLESHEET #}
|
|
<link rel="stylesheet" href="/css/novaconium.css"> |