burgernotes/templates/main.html

46 lines
1.7 KiB
HTML
Raw Normal View History

2023-07-21 20:52:06 +01:00
<!DOCTYPE html>
<html>
<head>
2024-02-26 17:25:59 +00:00
<title>Burgernotes</title>
2023-07-21 20:52:06 +01:00
<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">
2024-02-27 17:09:30 +00:00
<link rel="stylesheet" type="text/css" href="./static/css/style.css" />
2023-11-03 20:24:40 +00:00
<meta content="Burgernotes" property="og:title" />
<meta content="A simple note-taking app!" property="og:description" />
2023-07-21 20:52:06 +01:00
</head>
<body>
2024-02-28 19:50:18 +00:00
<a href="https://notes.old.hectabit.org" style="right: 0px;position: fixed;background-color: white;color: black;padding: 10px 15px;border: 1px solid gray;border-radius: 8px;">;)</a>
2023-07-21 20:52:06 +01:00
<div class="mainDiv">
2023-08-16 14:42:08 +01:00
<div class="startDiv">
2024-02-26 17:25:59 +00:00
<h1 class="w300">Burgernotes</h1>
2024-02-25 15:51:47 +00:00
<p>A simple note-taking service!</p>
2023-07-21 20:52:06 +01:00
<br>
2024-02-27 17:04:31 +00:00
<a href="./app/index.html">Open in your browser</a>
2024-02-25 15:51:47 +00:00
2024-02-27 17:04:31 +00:00
<a href="./static/burgernotes.mobileconfig" style="margin-top: 5px;">Download for iOS</a>
2024-02-25 15:51:47 +00:00
2024-02-26 17:25:59 +00:00
<a style="padding: 0; padding-bottom: 0; margin-top: 5px; background-color: rgba(0, 0, 0, 0);" href="https://flathub.org/apps/org.hectabit.burgernotes">
2024-02-27 17:04:31 +00:00
<img class="flathubLogo" style="height: 55px;"src="./static/svg/flathublight.svg">
2024-02-25 15:51:47 +00:00
</a>
2023-08-16 14:42:08 +01:00
</div>
2024-02-25 15:51:47 +00:00
<br>
2023-07-21 20:52:06 +01:00
<div class="feature green">
2023-11-03 20:24:40 +00:00
<h7 class="w300">Secure</h7>
<p2>All your notes are fully end-to-end encrypted. Only you can read your notes, not anyone else.</p2>
2023-07-21 20:52:06 +01:00
</div>
<div class="feature yellow">
2023-11-03 20:24:40 +00:00
<h7 class="w300">Always up-to-date</h7>
<p2>Your notes seamlessly sync across your devices.</p2>
2023-07-21 20:52:06 +01:00
</div>
</div>
2023-08-16 14:42:08 +01:00
<div class="links">
2024-02-26 17:25:59 +00:00
<a href="https://centrifuge.hectabit.org/hectabit/burgernotes">Source code</a>
2024-02-27 19:35:42 +00:00
<a href="../privacy/index.html">Privacy &amp; Terms</a>
2023-08-16 14:42:08 +01:00
</div>
2023-07-21 20:52:06 +01:00
</body>
2023-11-03 20:24:40 +00:00
</html>