-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathdevices.html
More file actions
33 lines (26 loc) · 718 Bytes
/
devices.html
File metadata and controls
33 lines (26 loc) · 718 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
31
32
33
---
layout: base
---
{% include header.html %}
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
{% if site.google_adsense %}
{% include ad.html %}
{% endif %}
<h4>Devices:</h4>
<ul>
{% assign sorted_devices = site.devices | sort: 'title' %}
{% for device in sorted_devices %}
{% if device.permalink %}
<li><a href="{{ site.baseurl }}{{ device.url }}">{{ device.title }} {{ device.subtitle }}</a></li>
{% endif %}
{% endfor %}
</ul>
<hr>
{% if site.google_adsense %}
{% include ad.html %}
{% endif %}
</div>
</div>
</div>