You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.4 KiB
PHTML
34 lines
1.4 KiB
PHTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<!-- Turn the head into a partial, split into meta, and links ? -->
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ $title ?? 'aNetwork Gaming Community' }}</title>
|
|
<meta name="description" content="The home for a network of game servers, and a community of gamers.">
|
|
<link rel="shortcut icon" href="https://leafphp.dev/logo-circle.png" type="image/x-icon">
|
|
|
|
<meta name="theme-color" content="white">
|
|
<meta name="theme-color" content="black">
|
|
|
|
<!-- aSkelly -->
|
|
<link rel="stylesheet" href="@assets('aSkelly/css/main.css')">
|
|
<script src="@assets('aSkelly/js/clipboard.js')" defer></script>
|
|
<script src="@assets('aSkelly/js/tabs.js')" defer></script>
|
|
<!-- Per site -->
|
|
<!-- <link rel="stylesheet" href="@assets('css/main.css')"> -->
|
|
<!-- External -->
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/iconoir-icons/iconoir@main/css/iconoir.css" />
|
|
|
|
</head>
|
|
|
|
<!-- Body split into header, footer, and _page_x for per-page -->
|
|
<!-- Then split those down into any repetetive areas -->
|
|
<body>
|
|
@yield('content')
|
|
</body>
|
|
|
|
</html>
|