forked from BlackrockDigital/startbootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (98 loc) · 4.04 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
---
layout: default
meta-title: Google Earth Engine 日本語マニュアル
meta-description: 翻訳ボランティアによる Google Earth Engine 日本語マニュアル
---
<header class="masthead">
<div class="container-fluid">
<div class="masthead-brand">Google Earth Engine 日本語マニュアル</div>
<h1 class="masthead-heading">Free Bootstrap Themes & Templates</h1>
<ul class="list-inline mt-4">
<li>
<a href="/template-categories/all/" class="btn btn-secondary btn-xl">Browse All Themes & Templates</a>
</li>
</ul>
<!-- Creative Tim -->
<a class="masthead-img mt-5 mx-auto" href="https://www.creative-tim.com?affiliate_id=101249" onclick="ga('send','event','Product','click','Creative Tim Homepage Image')">
<img src="/assets/img/creative-tim/creative-tim.jpg" alt="Premium Bootstrap Themes" rel="nofollow">
</a>
</div>
</header>
<section class="intro">
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<h2>Forever free, open source, and easy to use.</h2>
<p class="lead">Start Bootstrap is a collection of
<strong>free to download Bootstrap themes and templates</strong>. Our themes, built with <strong>HTML5, CSS3, and Bootstrap 4</strong>, are open source and you can use them for <em>any purpose, even commercially</em>!</p>
</div>
</div>
</div>
</section>
<hr class="hr-home">
<section class="themes">
<div class="container">
<div class="row">
{% for template in site.templates reversed %}
{% if template.categories contains 'featured' %}
<div class="col-lg-4 col-md-6 sb-preview text-center">
<div class="card h-100">
<a class="sb-preview-img" href="{{ template.src }}">
<img class="card-img-top" src="{{ template.img-src }}" alt="{{ template.img-desc }}">
</a>
<div class="card-body">
<h4 class="card-title">{{ template.title }}</h4>
<p class="card-text">{{ template.bump }}</p>
</div>
<div class="card-footer">
<a href="{{ template.src }}" class="btn btn-secondary">Preview & Download</a>
</div>
</div>
</div>
{% endif %}
{% endfor %}
</div>
<div class="row">
<div class="col-lg-12 text-center">
<a href="/template-categories/all/" class="btn btn-lg btn-primary">View More Themes & Templates</a>
</div>
</div>
</div>
</section>
<hr class="hr-home">
<section class="premium">
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<h2>Looking for something more?</h2>
<p class="lead">Try these hand picked premium themes!</p>
</div>
</div>
<div class="row">
<!-- Creative Tim -->
{% for item in site.premium reversed %}
{% if item.categories contains 'featured' %}
<div class="col-lg-4 col-md-6 sb-preview text-center">
{% if item.categories contains 'new' %}
<!-- New Item Badge -->
<span class="badge badge-warning sb-new-badge">New!</span>
{% endif %}
<div class="card h-100">
<a class="sb-preview-img" href="{{ item.src }}" onclick="ga('send','event','Product','click','{{ item.title }}')" rel="nofollow">
<img class="card-img-top" src="{{ item.img-src }}" alt="{{ item.img-desc }}">
</a>
<div class="card-body">
<h4 class="card-title">{{ item.title }}</h4>
<p class="card-text">{{ item.bump }}</p>
</div>
<div class="card-footer">
<a href="{{ item.src }}" class="btn btn-secondary" onclick="ga('send','event','Product','click','{{ item.title }}')">Preview & Download</a>
</div>
</div>
</div>
{% endif %}
{% endfor %}
</div>
<a href="/buy-bootstrap-templates" class="btn btn-lg btn-primary mx-auto">View More Premium Themes</a>
</div>
</section>