breve/layouts/main.html

17 lines
517 B
HTML
Raw Normal View History

2015-04-08 12:47:56 +02:00
<!DOCTYPE html>
<html>
<head>
<title>url shortener</title>
<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 12:56:18 +02:00
<a href="/"><h1>URL SHORTENER</h1></a>
2015-04-08 12:47:56 +02:00
<div id="container">
<div id="center"> $yield$ </div>
</div>
</body>
</html>