Init
This commit is contained in:
commit
d796f9e08a
14 changed files with 411 additions and 0 deletions
17
pages/error/404.html
Normal file
17
pages/error/404.html
Normal file
|
@ -0,0 +1,17 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<!-- <link rel="icon" type="image/x-icon" href="/public/img/favicon.ico">-->
|
||||
<!-- <link rel="stylesheet" href="/public/css/main.css">-->
|
||||
<title>Error 404 - Hibiscus</title>
|
||||
</head>
|
||||
<body>
|
||||
<main>
|
||||
<h1>Error 404 - Not Found</h1>
|
||||
<p>The page you were looking for doesn't exist or was moved</p>
|
||||
<h3><a href="/">Go home?</a></h3>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
29
pages/index.html
Normal file
29
pages/index.html
Normal file
|
@ -0,0 +1,29 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<!-- <link rel="stylesheet" href="/public/css/main.css">-->
|
||||
<link rel="stylesheet" href="/public/css/pico.red.min.css">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Hibiscus.txt</title>
|
||||
</head>
|
||||
<body>
|
||||
<header class="container">
|
||||
<h1 style="margin-bottom:0;">Hibiscus.txt</h1>
|
||||
<p id="status" style="margin-top:0;">Today is 14/03/2024</p>
|
||||
</header>
|
||||
<main class="container">
|
||||
<h2 style="margin-bottom:0;"><label for="day">Your day so far:</label></h2>
|
||||
<textarea id="day" name="Day entry" cols="40" rows="10" style="max-width: 640px; width: 100%"></textarea>
|
||||
<div class="grid"><button onclick="console.log('Test save')">Save</button></div>
|
||||
|
||||
<h2><label for="log">Log</label></h2>
|
||||
<input type="text" id="log" name="log" style="max-width: 640px; width: 100%"/>
|
||||
<div class="grid"><button onclick="console.log('Test log save')">Save</button></div>
|
||||
</main>
|
||||
<footer class="container">
|
||||
<p><a href="/page/sitemap" class="no-accent"></a> v0.0.1 | PoC using <a href="https://picocss.com">PicoCSS</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue