-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
26 lines (23 loc) · 893 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Less Grid Boilerplate</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet/less" href="css/main.less">
</head>
<body>
<div class="container grid">
<div class="row top">
<div class="full grid content-center-v content-center-h">Centered, full-width column. Typically used for a header.</div>
</div>
<div class="row bottom">
<div class="full grid content-center-v content-center-h">Centered, full-width column. Typically used for a footer.</div>
</div>
</div>
</body>
<script src="js/vendor/less.min.js"></script>
<script src="js/main.js"></script>
</html>