-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
120 lines (112 loc) · 3.98 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en" theme="dark-mode">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Blog - Tailsaw </title>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/css/bulma.min.css" />
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="stylesheet" href="../css/bulma-divider.min.css">
<link rel="stylesheet" href="./css/main.css">
<style>
nav.navbar {
height: 6rem !important;
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px 0 rgba(0, 0, 0, .06) !important;
}
</style>
</head>
<body>
<!-- START NAV -->
<nav class="navbar">
<div class="container">
<div class="invert navbar-brand ">
<a class="navbar-item" href="../">
<img src="https://bulmatemplates.github.io/bulma-templates/images/bulma.png" alt="Logo">
</a>
<span class="navbar-burger burger" data-target="navbarMenu">
<span></span>
<span></span>
<span></span>
</span>
</div>
<div id="navbarMenu" class="navbar-menu">
<div class="navbar-end">
<div class=" navbar-item">
<div class="control has-icons-left">
<input class="input is-rounded" type="email" placeholder="Search">
<span class="icon is-left">
<i class="fa fa-search"></i>
</span>
</div>
</div>
<a class="navbar-item is-active is-size-5 has-text-weight-semibold">
Home
</a>
<a class="navbar-item is-size-5 has-text-weight-semibold">
Examples
</a>
<a class="navbar-item is-size-5 has-text-weight-semibold">
Features
</a>
</div>
</div>
</div>
</nav>
<!-- END NAV -->
<!-- Image -->
<section class="hero ">
<div class="hero-body">
<div class="container">
<div class="columns">
<div class="column is-8 is-offset-2">
<figure class="image is-16by9">
<img src="https://bulmatemplates.github.io/bulma-templates/images/first-post.png">
</figure>
</div>
</div>
<section class="section">
<div class="columns">
<div class="column is-8 is-offset-2">
<div class="content is-medium">
<h2 class="subtitle is-4">December 25, 2018</h2>
<h1 class="title">Getting Started</h1>
<p>This is a starter template for creating a beautiful, customizable blog with minimal
effort. You’ll only have to change a few settings and you’re ready to go. As with all Jigsaw sites,
configuration settings can be found in config</p>
</div>
</div>
</div>
</section>
</div>
</div>
</section>
<!-- newsletter -->
<section class="section">
<div class="columns">
<div class="column is-8 is-offset-2">
<div class="container has-text-centered is-fluid">
<div class="hero is-light">
<div class="hero-body">
<h2 class="title is-4">Sign up for our newsletter</h1>
<div class="column is-6 is-offset-3">
<div class="field has-addons has-addons-centered">
<div class="control is-expanded">
<input class="input " type="text" placeholder="Email address">
</div>
<div class="control" >
<a class="button is-success">
Subscribe
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</body>
</html>