forked from BlackrockDigital/startbootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
showcase.html
36 lines (35 loc) · 1.24 KB
/
showcase.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
---
layout: page
title: Showcase
description: "A group of websites built using themes and templates from Start Bootstrap."
meta-title: "Bootstrap Website Showcase"
meta-description: "A showcase of Bootstrap built websites created using themes and templates from Start Bootstrap's free template library."
---
<div class="container">
<div class="row previews">
{% for post in site.categories.showcase %}
<div class="col-md-6">
<div class="thumbnail">
<a href="{{ post.source }}" class="post-image-link">
{{ post.content }}
</a>
<div class="caption">
<h3>{{ post.title }}</h3>
<p>Template Used: <a href="/template-overviews/{{ post.slug }}">{{ post.template }}</a></p>
<p>Published: {{ post.date | date: "%B %Y" }}</p>
<a href="{{ post.source }}" class="btn btn-default">Visit Website</a>
</div>
</div>
</div>
{% endfor %}
</div>
<div class="row">
<div class="col-lg-12 text-center">
<div class="well">
<h3>Submit a Site</h3>
<p>Do you have a site built with a Start Bootstrap template or theme that you want us to feature? If so, email us a link and we will take a look!</p>
<a class="btn btn-primary" href="mailto:[email protected]">Email Us!</a>
</div>
</div>
</div>
</div>