forked from substance/interior
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeatures.html
40 lines (33 loc) · 1.13 KB
/
features.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
---
layout: default
permalink: /features/
---
<div class="features">
{% include menu.html %}
<div class="article-navigation">
{% for item in site.categories.features reversed limit:40 offset:0 %}
<a class="article-link{% if item.title contains "Content" %} active{% endif %}" href="{{site.baseurl}}{{item.url}}" title="{{item.title}}">
<div class="title" style="padding-top: 36px;">{{item.title}}</div>
</a>
{% endfor %}
</div>
</div>
{% for page in site.categories.features limit:1 offset:2 %}
<div class="intro">
<div class="title">{{page.title}}</div>
<div class="abstract">{{page.abstract}}</div>
</div>
<div class="article-wrapper">
<div class="help post-content">
{{ page.content }}
</div>
</div>
<div class="improve-article-wrapper">
<div class="improve-article">
<a class="button" href="{{page.prose_link }}">Edit in Prose</a>
<p>
This article has been written and published using <a href="http://prose.io" target="_blank">Prose</a>. Please help improving this documentation by contributing to the text.
</p>
</div>
</div>
{% endfor %}