Personal website
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$Root = $Data.Root
19$Path = $Data.Path
20
21doctype
22
23html -class 'from-red-300! to-red-500!' {
24 head {
25 link -Rel stylesheet -Href '/style.css'
26
27 _scripts
28 meta -Name darkreader-lock
29 }
30
31 body {
32 _header
33
34 div -Class "n-box text-center" {
35 h1 {
36 span -Class 'text-6xl' { $Data.Status.Code }
37 br
38 span -Class 'text-4xl' { $Data.Status.Description }
39 }
40
41 hr
42
43 "OOPSIE WOOPSIE!! Uwu We made a fucky wucky!! A wittle fucko boingo! The code monkeys at our headquarters are working VEWY HAWD to fix this!"
44
45 hr
46
47 a -Href '/' -Class 'clickable p-4' { 'go home......' }
48 }
49 }
50}