46 lines
1.4 KiB
HTML
46 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html manifest='cache.manifest'>
|
|
<head><title>Git.io</title>
|
|
<meta charset='utf-8'>
|
|
<meta name='description' content='git.io browser extension with support for custom URLs and shrt-history'>
|
|
<meta name='keywords' content='github, git.io'>
|
|
<meta name='apple-mobile-web-app-capable' content='yes'>
|
|
<meta name='apple-mobile-web-app-status-bar-style' content='black'>
|
|
<meta name='viewport' content='width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no'>
|
|
<link rel='icon' type='image/png' sizes='512x512' href='icon.png'>
|
|
<link rel='icon' type='image/png' sizes='128x128' href='favicon.png'>
|
|
|
|
<link rel='stylesheet' href='./style.css'>
|
|
<script type='text/javascript' src='./script.js'></script>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<section>
|
|
<label for='full-url'>GitHub</label>
|
|
<input id='full-url' type='text' placeholder='full url'>
|
|
</section>
|
|
|
|
<section>
|
|
<label for='shortened-url'>Git.io</label>
|
|
<input id='shortened-url' type='text' placeholder='(custom shortener)'>
|
|
<button id='action-button'>shrt!</button>
|
|
</section>
|
|
|
|
<ul id='notifications'>
|
|
<li><span id='message'>Enter the shortener (optional) and click “shrt!”<span></li>
|
|
</ul>
|
|
|
|
<ul id='recent-links'></ul>
|
|
|
|
<ul id='show-all-recent-links' title='Show all recent links'>
|
|
<li></li>
|
|
</ul>
|
|
|
|
<ul id='clear-list' title='Clear the list'>
|
|
<li>clear list</li>
|
|
</ul>
|
|
|
|
</body>
|
|
</html>
|