mirror of https://github.com/josh-berry/tab-stash
48 lines
1.3 KiB
HTML
48 lines
1.3 KiB
HTML
<!doctype html>
|
|
<html lang="en-US">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width,maximum-scale=2" />
|
|
<link rel="stylesheet" type="text/css" href="style.css" />
|
|
<link rel="icon" href="favicon.svg" />
|
|
<title>{{page.title}} - {{site.title}}</title>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div>
|
|
<h1>
|
|
<a href="."><img id="logo" src="logo.svg" /></a>
|
|
</h1>
|
|
<h2>{{ site.description }}</h2>
|
|
</div>
|
|
<nav>
|
|
<a
|
|
class="install"
|
|
href="https://addons.mozilla.org/en-US/firefox/addon/tab-stash/"
|
|
>Get Tab Stash</a
|
|
>
|
|
<a href="tips.html">Tips</a>
|
|
<a href="privacy.html">Privacy</a>
|
|
<a href="support.html">Support</a>
|
|
<a href="https://github.com/josh-berry/tab-stash/wiki">Wiki</a>
|
|
<a href="contributing.html">Contributing</a>
|
|
<a href="{{ site.github.repository_url }}">Source</a>
|
|
<a href="https://github.com/sponsors/josh-berry">♥︎ Sponsor</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
<div>{{ content }}</div>
|
|
</main>
|
|
|
|
<footer>
|
|
<div>
|
|
<p>
|
|
Tab Stash is a spare-time project by
|
|
<a href="{{ site.github.owner_url }}">Josh Berry</a>
|
|
</p>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html>
|