-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (57 loc) · 2 KB
/
index.html
File metadata and controls
65 lines (57 loc) · 2 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<title>Gemini Beer Company</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/build/main.css">
<link href='https://fonts.googleapis.com/css?family=Lato|Indie+Flower' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
</head>
<body class="home">
<!-- <template id="header"> -->
<header class="main-header">
<div class="container">
<a class="site-logo" href="/">
<img src="images/smokeybanditlogo.jpg" alt="GeminiLogo">
</a>
<ul class="nav">
<li><a href="aboutus.html">About Us</a></li>
<li><a href="thebeers.html">The Beers</a></li>
<li><a href="wheretobuy.html">Find our Beers</a></li>
</ul>
</div>
</header>
<!-- </template>
-->
<div class="intro">
<img src="images/barrels.jpg">
<div class="introtext">
We're a gypsy brewery that does blah blah blah. Insert super catchy tag line here.
</div>
</div>
<div class="container">
<div class="content">
<div class="lineup">
<img src="http://placehold.it/500x400">
<span>This is our lineup right now but we're just getting started. Stay tuned for more!</span>
</div>
</div>
</div>
<footer class="main-footer">
<div class="container">
<div class="contactinfo">
For all beer related inquiries contact chris@geminibeer.com
</div>
<ul class="socialicons">
<li><a href="https://www.facebook.com/GeminiBeerCompany/"><i class="fa fa-facebook-square"></i></a></li>
<li><a href="https://twitter.com/GeminiiBeerCo"><i class="fa fa-twitter-square"></i></a></li>
<li><i class="fa fa-instagram"></i></li>
</ul>
</div>
</footer>
<script>
var tmpl = document.getElementById('header');
document.body.appendChild(tmpl.content.cloneNode(true));
</script>
</body>
</html>