-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdemos.html
More file actions
30 lines (27 loc) · 754 Bytes
/
demos.html
File metadata and controls
30 lines (27 loc) · 754 Bytes
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
---
layout: default
title: Demos
navorder: 3
---
<!--Content Area Start-->
<div id="content">
<div class="container">
<div class="divider-info ptb">
<div class="page-header-title">
<h2 class="heading-title text-center">{{ page.title }}</h2>
</div>
</div>
</div>
<div class="container">
<!-- <h4 class="sub-title space-left">{{category[0]}}</h4> -->
<div class="row">
{% for post in site.categories.Demos %}
<!-- Start card -->
<div class="col-sm-6 col-md-4 col-lg-3">
{% include themes/bootstrap/card.html %}
</div>
<!-- End card -->
{% endfor %}
</div>
</div>
</div>