forked from mmistakes/jekyll-theme-skinny-bones
-
Notifications
You must be signed in to change notification settings - Fork 5
/
devices.html
50 lines (38 loc) · 1.73 KB
/
devices.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
---
layout: default
title: Devices
description: List of supported devices
---
<div id="page-wrapper">
<!-- Banner -->
<section id="banner">
<div class="content">
<h2>{{ page.title }}</h2>
<p>{{ page.description }}</p>
</div>
</section>
<!-- Main -->
<section id="blog" class="container" >
<div class="row" style="display: flex; flex-wrap: wrap;">
<!-- assign sections_sorted = site.data.sections | sort: 'order' -->
{% for device in site.devices %}
<div class="3u 6u(narrower)">
<section class="box blog special">
<span class="image featured post-teaser">
{% if device.image.teaser %}
<img src="{{ '/images/' | append: device.image.teaser | relative_url }}" alt="teaser" itemprop="image">
{% else %}
<img src="{{ '/images/' | append: site.teaser | relative_url }}" alt="teaser" itemprop="image">{% endif %}
<h4>{{ device.name }}</h3>
<!-- p>{{ device.description }}</p -->
<ul class="actions">
<li><a href="{{ device.url | relative_url }}" class="button alt">Learn More</a></li>
</ul>
</a>
</section>
</div>
{% endfor %}
</div>
<div style="clear:both; "><a href="{{ '/devices-table' | relative_url }}" class="button alt">Table</a> <br/> <br/></div>
</section>
</div>