forked from NithinSS/fossmec.github.io
-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.html
46 lines (44 loc) · 1.45 KB
/
app.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
---
layout: default
---
<section id="one" >
<div class="container">
{% for doc in site.appdev limit:1 %}
<article>
<header>
<h2><a href="{{ site.baseurl }}{{ doc.url }}">{{ doc.title }}</a></h2>
</header>
<section class="post-content">
{{ doc.content | truncatewords: 60 }}
</section>
<section class="special">
<ul class="actions">
<li><a href="{{ site.baseurl }}{{ doc.url }}" class="button special">Read More</a></li>
</ul>
</section>
</article>
{% endfor %}
</div>
</section>
<section>
<div class="container">
<div class="features">
{% for doc in site.appdev offset:1 %}
<article>
<section class="excerpt">
<header>
<h3><a href="{{ site.baseurl }}{{ doc.url }}">{{ doc.title }}</a></h3>
</header>
{{ doc.content | truncatewords: 30 }}
</section>
<footer>
<ul class="actions">
<li><a href="{{ site.baseurl }}{{ doc.url }}" class="button">Read More</a></li>
</ul>
</footer>
<div class="clear"></div>
</article>
{% endfor %}
</div>
</div>
</section>