forked from samwx/html-skeleton-gulp
-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
52 lines (43 loc) · 1.83 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!doctype html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="description" content="Description of website here" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Facebook OG Tags -->
<meta property="og:image" content="assets/img/gulp.png"/>
<meta property="og:title" content="A Front End base for start your project. Gulp ready!"/>
<meta property="og:type" content="website" />
<meta property="og:url" content="http://samwx.github.io/html-skeleton-gulp/"/>
<meta property="og:site_name" content="HTML Skeleton - Gulp Version"/>
<!-- ================ -->
<title>HTML Skeleton - Gulp</title>
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="assets/dist/all.min.css">
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<!-- Create HTML 5 elements and fix media queries on Internet Explorer -->
<!--[if IE]>
<script src="assets/hacks/respond.min.js"></script>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="jumbotron">
<h1>Hello world!</h1>
<p>This is <b>HTML-Skeleton</b>, a base structure for front-end project working together with <b><a href="http://gulpjs.com">Gulpjs</a></b>.</p>
<p><a href="http://samweb.com.br" target="_blank" class="btn btn-success btn-lg">Visit my website!</a></p>
</div>
<ul class="nav nav-pills text-center">
<li><a href="http://twitter.com/samwebdesign" target="_blank">Twitter</a></li>
<li><a href="https://plus.google.com/+SamuelMartins/" target="_blank">Google +</a></li>
<li><a href="https://github.com/samwx/" target="_blank">Github</a></li>
</ul>
</div>
</div>
</div>
<script src="assets/dist/concat.min.js"></script>
</body>
</html>