-
Notifications
You must be signed in to change notification settings - Fork 6
/
templates.html
51 lines (48 loc) · 1.63 KB
/
templates.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
---
layout: default
route: templates
---
<section class="hero is-primary">
<div class="hero-head">
<div class="container">
{% include header.html %}
</div>
</div>
<div class="hero-body">
<div class="container">
<h1 class="title">
Templates
</h1>
<h2 class="subtitle">
<strong>Free</strong> HTML templates that make use of Bulma <strong>out of the box</strong>
</h2>
</div>
</div>
</section>
<section class="section">
<div class="container">
<div class="columns is-multiline">
<div class="column is-one-third">
<a class="box" href="{{ site.url }}/templates/everything.html">
<h3 class="title is-4">Everything</h3>
<h4 class="subtitle is-5">All Bulma elements on one page</h4>
<figure class="image is-4by3"><img src="{{site.url}}/images/placeholders/640x480.png"></figure>
</a>
</div>
<div class="column is-one-third">
<a class="box" href="{{ site.url }}/templates/business.html">
<h3 class="title is-4">Business</h3>
<h4 class="subtitle is-5">Classic business homepage</h4>
<figure class="image is-4by3"><img src="{{site.url}}/images/placeholders/640x480.png"></figure>
</a>
</div>
<div class="column is-one-third">
<a class="box" href="{{ site.url }}/templates/welcome.html">
<h3 class="title is-4">Welcome</h3>
<h4 class="subtitle is-5">Simple one-page introduction</h4>
<figure class="image is-4by3"><img src="{{site.url}}/images/placeholders/640x480.png"></figure>
</a>
</div>
</div>
</div>
</section>