Personal website
at master 45 lines 1.3 kB view raw
1@* 2 This file is part of NKK. 3 4 NKK is free software: you can redistribute it and/or modify it under the 5 terms of the GNU Affero General Public License as published by the Free 6 Software Foundation, either version 3 of the License, or (at your option) 7 any later version. 8 9 NKK is distributed in the hope that it will be useful, but WITHOUT ANY 10 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 11 FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for 12 more details. 13 14 You should have received a copy of the GNU Affero General Public License 15 along with NKK. If not, see <http://www.gnu.org/licenses/>. 16*@ 17 18@inherits LayoutComponentBase 19 20<!DOCTYPE html> 21<html lang="en"> 22<head> 23 <meta charset="utf-8" /> 24 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 25 26 <link rel="stylesheet" type="text/css" href="@Assets["/style.css"]" /> 27 28 <script src="@Assets["/htmx.js"]"></script> 29 <meta name="htmx-config" content='{"scrollIntoViewOnBoost":false}' /> 30 31 <HeadOutlet /> 32 @* blank placeholder title, overriden (usually) in @Body *@ 33 <AppTitle></AppTitle> 34</head> 35<body> 36 <Header /> 37 38 @* maybe also stuff this in <Header> *@ 39 <NavMenu /> 40 41 <div class="n-box"> 42 @Body 43 </div> 44</body> 45</html>