forked from CloudCannon/bakery-store-jekyll-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·67 lines (67 loc) · 2.21 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,700" media="all">
</head>
<body>
<header>
<div class="container">
<nav class="main-nav">
<ul>
<li><a href="/">Home</a></li>
<li><a href="/blog.html">Blog</a></li>
</ul>
</nav>
<h1><a href="/">Bakery<strong>Store</strong></a></h1>
</div>
</header>
<div class="content">
<section class="hero">
<div class="small-container">
<h2>Fresh, homemade baked goods</h2>
<p class="sub-text">Bakery<strong>Store</strong> serves the freshest baked goods in San Francisco.</p>
</div>
</section>
<div class="container">
<p class="post-hero center-text spacing">Bakery<strong>Store</strong> is known for our fresh bread, delicious cupcakes and chocolatey cookies.</p>
</div>
<div class="container">
<div class="columns spacing">
<div class="column half">
<img src="/images/bread.jpg" width="430" alt="Bread">
</div>
<div class="column half">
<h3>Fresh Bread</h3>
<p>Our bread is baked fresh every morning.</p>
</div>
</div>
<div class="columns spacing">
<div class="column half">
<h3>Delicious Cupcakes</h3>
<p>The best cupcakes in San Francisco.</p>
</div>
<div class="column half">
<img src="/images/cupcake.jpg" width="430" alt="cupcakes">
</div>
</div>
<div class="columns spacing">
<div class="column half">
<img src="/images/cookie.jpg" width="430" alt="cookies">
</div>
<div class="column half">
<h3>Chocolatey cookies</h3>
<p>Served with a glass of milk.</p>
</div>
</div>
</div>
</div>
<footer>
<div class="container">
<p class="center-text"> <a href="http://cloudcannon.com">Created by CloudCannon</a></p>
</div>
</footer>
</body>
</html>