aboutsummaryrefslogtreecommitdiffstats
path: root/views/layout.html.erb
blob: 845929f6420ae675cb1d91ca399b384113336d24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
	<meta charset="utf-8">
	<title>Clips</title>
	<meta name="description" content="">

	<meta name="viewport" content="width=device-width">
	<link rel="stylesheet" href="css/style.css">
</head>
<body>
	<header>

	</header>
	<div role="main">
		<%= yield %>
	</div>
	<footer>

	</footer>
</body>
</html>