Forget-Me-Not/templates/main_template_top.nimf

33 lines
1.5 KiB
Plaintext
Raw Normal View History

2025-05-15 08:01:35 -05:00
#? stdtmpl(subsChar = '$', metaChar = '#')
#import "../helpers/global", "../models/reminder", "../helpers/auth"
#proc mainTemplateTop*(title, csrfToken: string): string =
#let sections = getAllReminders()
# result = ""
<!DOCTYPE html>
<html lang="en" class="min-h-full">
<head>
<meta charset="utf-8">
<title>${title}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" >
<link rel="shortcut icon apple-touch-icon-precomposed" href="${ASSETS_URL}/img/touch-icon.png">
<link href="${ASSETS_URL}/css/fmn.css" rel="stylesheet">
</head>
<body class="main-bg min-h-full">
<div class="flex flex-row min-h-screen">
<div class="lg:basis-1/12"></div>
<div class="lg:basis-10/12 lg:flex lg:flex-col lg:max-w-[1600px]">
<header class="p-4">
<div class="lg:flex lg:flex-row">
<div class="lg:hidden home-link">
<a href="/" title="Click to go home" class="text-3xl text-indigo-300"><img src="${ASSETS_URL}/img/fmn_logo_125x117.png" alt="Forget-Me-Not logo." class="inline" width="125" height="117" />Forget-Me-Not</a>
</div>
<div class="hidden lg:block lg:basis-2/4 home-link">
<div class="mt-4 lg:mt-0">
<a href="/" title="Click to go home" class="text-3xl text-indigo-300"><img src="${ASSETS_URL}/img/fmn_logo_125x117.png" alt="Forget-Me-Not logo." class="inline" width="125" height="117" />Forget-Me-Not</a>
</div>
</div>
</div>
</header>
<main class="flex-1 py-8 px-12 pjax-me">
#end proc