breve/layouts/main.html

22 lines
698 B
HTML
Raw Permalink Normal View History

2015-04-08 12:47:56 +02:00
<!DOCTYPE html>
<html>
<head>
2015-04-08 23:24:51 +02:00
<title>breve: url shortener</title>
2015-04-08 12:47:56 +02:00
<meta name="description" content="url shortener">
<meta name="keywords" content="url, shortener">
<meta name="author" content="Michele Guerini Rocco">
<meta charset="utf-8">
<link rel=stylesheet href="main.css" type="text/css">
</head>
<body>
2015-04-08 23:24:51 +02:00
<h1><a href="/">BREVE</a></h1>
<h2>a url shortener</h2>
2015-04-08 12:47:56 +02:00
<div id="container">
2015-04-08 23:25:07 +02:00
<div id="center">$yield$</div>
2015-04-08 12:47:56 +02:00
</div>
2015-04-08 23:25:07 +02:00
<footer>
breve is open <a href="https://github.com/rnhmjoj/breve">source</a>
<span>© Rnhmjoj</span>
</footer>
2015-04-08 12:47:56 +02:00
</body>
</html>