]> luflow.net public git repositories - flow-web.git/blob - templates/500.stpl
Initial commit.
[flow-web.git] / templates / 500.stpl
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="UTF-8">
5 <meta http-equiv="X-UA-Compatible" content="IE-edge">
6 <meta name="viewport" content="width=device-width, initial-scale=1.0">
7 <meta name="keywords" content="luflow, HFGE, Free Software, C++, Libre software, Engine, Game Engine, Graphics, 3D, 2D, Programming, Vulkan">
8 <meta name="description" content="This website is dedicated to free software primarily in the area of graphics engines but also free software in general.">
9 <link type="application/atom+xml" rel="alternate" title="luflow.net — Activity Feed" href="/feeds/blog.atom">
10 <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
11 <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
12 <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
13 <link rel="icon" type="image/svg+xml" sizes="any" href="/static/img/icon.svg" />
14 <link rel="manifest" href="/site.webmanifest">
15 <link rel="stylesheet" href="/static/css/common.css">
16 <link rel="stylesheet" href="/static/css/elements.css">
17 <link rel="stylesheet" href="/static/css/breadcrumbs.css">
18 <link rel="stylesheet" href="/static/css/header.css">
19 <link rel="stylesheet" href="/static/css/footer.css">
20 <link rel="stylesheet" href="/static/css/page.css">
21 <title>500 - Internal Server Error | luflow.net</title>
22 </head>
23 <body>
24 <div id="content">
25
26 <% include!("./partials/header.stpl"); %>
27
28 <% include!("./partials/500_content.stpl"); %>
29
30 <% include!("./partials/footer.stpl"); %>
31
32 </div>
33
34 <% include!("./partials/script_core.stpl"); %>
35 <script>
36 // make menu item active visually:
37 let menuItem = document.getElementById("Home");
38 if (menuItem)
39 {
40 menuItem.classList.add("menu-item-active");
41 }
42 </script>
43
44 </body>
45 </html>
46
47
48