block vars

block loadClientEntry
	- const clientEntry = getClientEntry();

doctype html

//
		-
		___      _      _              
		/ __\__ _| | ___| | _____ _   _ 
	/ /  / _` | |/ __| |/ / _ \ | | |
	/ /__| (_| | | (__|   <  __/ |_| |
	\____/\__,_|_|\___|_|\_\___|\__, |
								              |___/


		Thank you for using Calckey!
		If you are reading this message... how about joining the development?
		https://codeberg.org/thatonecalculator/calckey

html

	head
		meta(charset='utf-8')
		meta(name='application-name' content='Calckey')
		meta(name='referrer' content='origin')
		meta(name='theme-color' content= themeColor || '#31748f')
		meta(name='theme-color-orig' content= themeColor || '#31748f')
		meta(property='twitter:card' content='summary')
		meta(property='og:site_name' content= instanceName || 'Calckey')
		meta(name='viewport' content='width=device-width, initial-scale=1')
		link(rel='icon' href= icon || '/favicon.ico')
		link(rel='apple-touch-icon' href= icon || '/apple-touch-icon.png')
		link(rel='manifest' href='/manifest.json')
		link(rel='prefetch' href='/static-assets/badges/info.jpg')
		link(rel='prefetch' href='/static-assets/badges/not-found.jpg')
		link(rel='prefetch' href='/static-assets/badges/error.jpg')
		link(rel='stylesheet' href='/assets/fontawesome/css/all.css')
		link(rel='modulepreload' href=`/assets/${clientEntry.file}`)

		each href in clientEntry.css
			link(rel='preload' href=`/assets/${href}` as='style')

		each href in clientEntry.css
			link(rel='preload' href=`/assets/${href}` as='style')

		title
			block title
				= title || 'Calckey'

		block desc
			meta(name='description' content= desc || '✨🌎✨ A interplanetary communication platform βœ¨πŸš€βœ¨')

		block meta
			if privateMode
				meta(name='robots' content='noindex')

		block og
			meta(property='og:title'       content= title || 'Calckey')
			meta(property='og:description' content= desc || '✨🌎✨ A interplanetary communication platform βœ¨πŸš€βœ¨')
			meta(property='og:image'       content= img)

		style
			include ../style.css

		script.
			var VERSION = "#{version}";
			var CLIENT_ENTRY = "#{clientEntry.file}";

		script
			include ../boot.js

	body
		noscript: p
			| JavaScriptγ‚’ζœ‰εŠΉγ«γ—γ¦γγ γ•γ„
			br
			| Please turn on your JavaScript
		div#splash
			img#splashIcon(src= icon || '/static-assets/splash.png')
			span#splashText
				block randomMOTD
					= randomMOTD
			div#splashSpinner
				<svg class="spinner bg" viewBox="0 0 152 152" xmlns="http://www.w3.org/2000/svg">
					<g transform="matrix(1,0,0,1,12,12)">
						<circle cx="64" cy="64" r="64" style="fill:none;stroke:currentColor;stroke-width:24px;"/>
					</g>
				</svg>
				<svg class="spinner fg" viewBox="0 0 152 152" xmlns="http://www.w3.org/2000/svg">
					<g transform="matrix(1,0,0,1,12,12)">
						<path d="M128,64C128,28.654 99.346,0 64,0C99.346,0 128,28.654 128,64Z" style="fill:none;stroke:currentColor;stroke-width:24px;"/>
					</g>
				</svg>
		block content