mirror of
https://github.com/helenclx/leilukin-site.git
synced 2025-03-14 20:27:15 +00:00
53 lines
2.3 KiB
Plaintext
53 lines
2.3 KiB
Plaintext
|
<!DOCTYPE html>
|
||
|
<html lang="en" dir="ltr" id="page-top">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
||
|
{# Open Graph #}
|
||
|
<meta property="og:url" content="https://leilukin.neocities.org/home">
|
||
|
<meta property="og:type" content="website">
|
||
|
<meta property="og:site_name" content="Leilukin's Hub">
|
||
|
<meta property="og:title" content="{{ title }} | Leilukin's Hub">
|
||
|
<meta property="og:description" content="{{ meta_description }}">
|
||
|
|
||
|
{# CSS #}
|
||
|
<link rel="stylesheet" href="{{'/assets/css/main.css' | url | safe}}">
|
||
|
|
||
|
{# Font Awesome #}
|
||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
|
||
|
|
||
|
{# Google Fonts #}
|
||
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||
|
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
|
||
|
|
||
|
<link rel="apple-touch-icon" sizes="180x180" href="/assets/favicon/apple-touch-icon.png">
|
||
|
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon/favicon-32x32.png">
|
||
|
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon/favicon-16x16.png">
|
||
|
<link rel="manifest" href="/assets/favicon/site.webmanifest">
|
||
|
|
||
|
{# JavaScript #}
|
||
|
<script src="/assets/js/navbar.js" defer></script>
|
||
|
<script src="/assets/js/events.js" defer></script>
|
||
|
|
||
|
<title>{{ title }} | Leilukin's Hub</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
{% include "components/header.njk" %}
|
||
|
{% include "components/navbar.njk" %}
|
||
|
<main>
|
||
|
<!-- <aside class="left-sidebar">
|
||
|
Left sidebar content here
|
||
|
</aside> -->
|
||
|
|
||
|
{{ content | safe }}
|
||
|
|
||
|
<!-- <aside class="right-sidebar">
|
||
|
Right sidebar content here
|
||
|
</aside> -->
|
||
|
</main>
|
||
|
{% include "components/footer.njk" %}
|
||
|
</body>
|
||
|
</html>
|