mirror of
https://github.com/dnote/dnote
synced 2026-03-17 16:00:08 +01:00
* Allow to add and edit notes * Implement search * Implement settings * Implement checkout page * Implement paywall * Fix inconsistent margin * Render mobile menu * Allow to logout * emails * Implement user migration * Always build standalone * Embed digest in email * Move browser extension * Fix test * Use system font * Add favicon and app icons * Make tabbar smaller * Initialize focus on editor * Fix various UI audit issues * Simplify asset serving * Register sw * Upgrade deps
15 lines
437 B
HTML
15 lines
437 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Dnote browser extension</title>
|
|
<meta charset="utf-8" />
|
|
<link href="styles/popup.css" rel="stylesheet" />
|
|
<link href="styles/select.css" rel="stylesheet" />
|
|
<link href="https://fonts.googleapis.com/css?family=Lato:400,700" rel="stylesheet" />
|
|
</head>
|
|
<body class="pending">
|
|
<div id="app"></div>
|
|
|
|
<script src="scripts/popup.js"></script>
|
|
</body>
|
|
</html>
|