Burgernotes/templates/main.html

39 lines
1.2 KiB
HTML
Raw Normal View History

2023-07-21 20:52:06 +01:00
<!DOCTYPE html>
<html>
<head>
<title>burgernotes</title>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" type="text/css" href="/static/css/style.css" />
2023-08-10 17:40:37 +01:00
<meta content="burgernotes" property="og:title" />
2023-08-26 17:57:56 +01:00
<meta content="simple note-taking app :3" property="og:description" />
2023-07-21 20:52:06 +01:00
</head>
<body>
<div class="mainDiv">
2023-08-16 14:42:08 +01:00
<div class="startDiv">
<h1 class="w300">burgernotes</h1>
2023-08-26 17:57:56 +01:00
<p>simple note-taking app</p>
2023-07-21 20:52:06 +01:00
<br>
2023-08-16 14:42:08 +01:00
<a href="/app">open in your browser</a>
<!--<a href="/download">download app</a>-->
</div>
2023-07-21 20:52:06 +01:00
<br><br><br>
<div class="feature green">
2023-08-26 17:57:56 +01:00
<h3 class="w300">secure</h4>
<p>all your notes are fully end-to-end encrypted. only you can read your notes, not anyone else.</p>
2023-07-21 20:52:06 +01:00
</div>
<div class="feature yellow">
2023-08-26 17:57:56 +01:00
<h3 class="w300">always up-to-date</h4>
2023-08-02 20:08:11 +01:00
<p>your notes seamlessly sync across your devices.</p>
2023-07-21 20:52:06 +01:00
</div>
</div>
2023-08-16 14:42:08 +01:00
<div class="links">
<a href="https://codeberg.org/burger-software/burgernotes">source code</a>
<a href="/privacy">privacy policy</a>
</div>
2023-07-21 20:52:06 +01:00
</body>
</html>