BATMAN 🦇

This commit is contained in:
2023-10-03 21:57:16 +02:00
commit e78a06547a
32 changed files with 37137 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
<html>
<head>
<link rel="stylesheet" href="/static/md-css/air.css">
</head>
<body>
{% include "poem.html" ignore missing %}
</body>
</html>

8
templates/http404.html Normal file
View File

@@ -0,0 +1,8 @@
<html>
<head>
<title>404 - Not Found</title>
</head>
<body>
<h1>Error 404: Not Found</h1>
</body>
</html>

8
templates/http500.html Normal file
View File

@@ -0,0 +1,8 @@
<html>
<head>
<title>500 - Internal Server Error</title>
</head>
<body>
<h1>Error 500: Internal Server Error</h1>
</body>
</html>

35
templates/index.html Normal file
View File

@@ -0,0 +1,35 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>A Basic HTML5 Template</title>
<meta name="description" content="A simple HTML5 Template for new projects.">
<meta name="author" content="SitePoint">
<meta property="og:title" content="A Basic HTML5 Template">
<meta property="og:type" content="website">
<meta property="og:url" content="https://www.sitepoint.com/a-basic-html5-template/">
<meta property="og:description" content="A simple HTML5 Template for new projects.">
<meta property="og:image" content="image.png">
<link rel="icon" href="/favicon.ico">
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel="stylesheet" href="/static/uikit/css/uikit.css?v=1.0">
</head>
<body>
{% block top %}
{% include "site/top.html" %}
{% endblock %}
{% block content %}
<!-- your content here... -->
{% endblock %}
<script src="/static/uikit/js/uikit.js"></script>
</body>
</html>

18
templates/poem.html Normal file
View File

@@ -0,0 +1,18 @@
<!-- You may continue the poem here. -->
<!-- You want to check if template hotloading is working, right? -->
<!-- ;) -->
<!-- Render this in Markdown. -->
{% filter markdown %}
# Hello World!
```
A poem here to notice change.
Add one more sentence to it's range.
If ever you may read it then
You know this can only happen when
Someone may still be configurating.
```
{% endfilter %}

33
templates/site/top.html Normal file
View File

@@ -0,0 +1,33 @@
<nav class="uk-navbar-container">
<div class="uk-container">
<div uk-navbar>
<div class="uk-navbar-left">
<a class="uk-navbar-item uk-logo" href="#" aria-label="Back to Home">Logo</a>
<ul class="uk-navbar-nav">
<li>
<a href="#">
<span class="uk-icon uk-margin-small-right" uk-icon="icon: star"></span>
Features
</a>
</li>
</ul>
<div class="uk-navbar-item">
<div>Some <a href="#">Link</a></div>
</div>
<div class="uk-navbar-item">
<form action="javascript:void(0)">
<input class="uk-input uk-form-width-small" type="text" placeholder="Input" aria-label="Input">
<button class="uk-button uk-button-default">Button</button>
</form>
</div>
</div>
</div>
</div>
</nav>