Burgernotes/templates/main.html

41 lines
1.3 KiB
HTML
Raw Normal View History

2023-07-21 20:52:06 +01:00
<!DOCTYPE html>
<html>
<head>
2023-11-03 20:24:40 +00:00
<title>PageBurger</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">
<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>
<div class="mainDiv">
2023-08-16 14:42:08 +01:00
<div class="startDiv">
2023-11-03 20:24:40 +00:00
<h1 class="w300">PageBurger</h1>
<p>A simple note-taking app!</p>
2023-07-21 20:52:06 +01:00
<br>
2023-11-03 20:24:40 +00:00
<a href="/app">Open in your browser</a>
2024-02-14 17:38:25 +00:00
<br>
2024-02-14 17:50:15 +00:00
<a href="/static/pageburger.mobileconfig" style="margin-top: 5px;">Download for iOS</a>
2023-08-16 14:42:08 +01:00
</div>
2023-07-21 20:52:06 +01:00
<br><br><br>
<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">
2023-11-03 20:24:40 +00:00
<a href="https://centrifuge.hectabit.org/hectabit/pageburger">Source code</a>
<a href="/privacy">Privacy policy</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>