-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
105 lines (99 loc) · 4.57 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
---
layout: default
meta-title: Start Bootstrap
meta-description: Free open source Bootstrap themes and templates up to date for Bootstrap 3! An even faster way to develop websites in Bootstrap!
---
<header class="marquee">
<div class="container-fluid">
<div class="marquee-brand">Start Bootstrap</div>
<!-- Replace when guides go live! -->
<!-- <h1 class="marquee-heading">Free Bootstrap Themes, Templates, & Guides</h1> -->
<h1 class="marquee-heading">Free Bootstrap Themes & Templates</h1>
<ul class="list-inline">
<li><a href="/template-categories/all/" class="btn btn-default btn-lg">Browse All Themes & Templates<div class="badge-new">New!</div></a></li>
<!-- Add when guides go live! -->
<!-- <li><a href="#" class="btn btn-default btn-lg">Browse Guides & Tutorials <span class="badge-new">New!</span></a></li> -->
</ul>
<a class="marquee-img" href="https://wrapbootstrap.com/?ref=StartBootstrap">
<img src="/img/wrapbootstrap.jpg" alt="">
</a>
</div>
</header>
<section class="intro">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h2>Forever free, open source, and easy to use.</h2>
<!-- Replace when guides go live! -->
<!-- <p class="lead">Start Bootstrap is a collection of <strong>free to download Bootstrap themes and templates</strong>, and <strong>Bootstrap tutorials and guides</strong>. Our themes are open source and you can use them for any purpose, even comercially!</p> -->
<p class="lead">Start Bootstrap is a collection of <strong>free to download Bootstrap themes and templates</strong>. Our themes are open source and you can use them for any purpose, even comercially!</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-md-4 col-sm-6">
<div class="preview-panel">
<a href="{{ template.src }}">
<img src="{{ template.img-src }}" class="img-responsive" alt="{{ template.img-desc }}">
</a>
<div class="preview-panel-content">
<h4>{{ template.title }}</h4>
<p>{{ template.bump }}</p>
<a href="{{ template.src }}" class="btn btn-default">Preview & Download</a>
</div>
{% if template.categories contains 'new' %}
<div class="badge-new">New!</div>
{% endif %}
</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 All Themes & Templates</a>
</div>
</div>
</div>
</section>
<hr class="hr-home">
<section class="premium">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h2>Looking for something more?</h2>
<p class="lead">Try these premium themes from WrapBootstrap!</p>
</div>
{% for item in site.premium reversed %}
{% if item.categories contains 'featured' %}
<div class="col-md-4 col-sm-6">
<div class="preview-panel">
<a href="{{ item.src }}">
<img src="{{ item.img-src }}" class="img-responsive" alt="{{ item.img-desc }}">
</a>
<div class="preview-panel-content">
<h4>{{ item.title }}</h4>
<p>{{ item.bump }}</p>
<a href="{{ item.src }}" class="btn btn-default">Preview & Download</a>
</div>
{% if item.categories contains 'new' %}
<div class="badge-new">New!</div>
{% endif %}
</div>
</div>
{% endif %}
{% endfor %}
</div>
<div class="row">
<div class="col-lg-12 text-center">
<a href="/buy-bootstrap-templates/" class="btn btn-lg btn-primary">View More Premium Themes</a>
</div>
</div>
</div>
</section>