63 lines
2.8 KiB
Twig
63 lines
2.8 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="#000000">
|
|
|
|
{# 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/x-icon" href="/favicon.ico">
|
|
|
|
{# 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=IBM+Plex+Mono&family=Roboto+Mono&family=Source+Code+Pro&family=Lato&family=Poppins&family=Material+Icons&family=Material+Icons+Outlined&family=VT323:wght@400&family=Fira+Code:wght@400;500&display=swap') }}"
|
|
rel="stylesheet"
|
|
>
|
|
|
|
{# STYLESHEET #}
|
|
{% if pageclass == "novaconium" %}
|
|
<link rel="stylesheet" href="/css/novaconium.css">
|
|
{% else %}
|
|
<link rel="stylesheet" href="/css/main.css">
|
|
{% endif %}
|
|
|
|
|
|
{% if editor == 'ace' %}
|
|
<!-- ACE Editor -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ace/1.35.2/ace.min.css">
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.35.2/ace.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.35.2/mode-html.min.js"></script> {# HTML syntax #}
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.35.2/theme-tomorrow_night.min.js"></script> {# Dark theme #}
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.35.2/ext-language_tools.min.js"></script> {# Autocomplete #}
|
|
<!-- END ACE Editor -->
|
|
{% endif %}
|
|
|
|
{# highlight.js #}
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script>
|
|
<script>hljs.highlightAll();</script>
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/default.min.css">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/ir-black.min.css"> |