-
Notifications
You must be signed in to change notification settings - Fork 1
/
tutorials.html
44 lines (44 loc) · 1.51 KB
/
tutorials.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
---
layout: page
title: Tutorials
description: Learn at your own pace!
---
{% for tut in site.tutorials %}
{% capture filename %}{{ tut.path | remove:"_tutorials/" | split:"/" | last }}{% endcapture %}
{% if filename == "index.md" %}
<div class="post-preview">
<a href="{{ site.baseurl }}{{ tut.url }}">
<h2 class="post-title">{{ tut.title }}
</h2>
{% if tut.excerpt %}
<h4 class="post-subtitle">
{{ tut.excerpt }}
</h4>
{% endif %}
</a>
<p class="post-meta">Last updated: {{ tut.last_updated | date: "%B %-d, %Y" }}</p>
</div>
<hr>
<!--
<article class="span 12 ">
<header>
% include libs/thumbnail %}
<hgroup>
<h2>
<a href="{{ site.baseurl }}{{ tut.url }}">{{ tut.title }}</a>
</h2>
<h5>
{{ tut.author }}
</h5>
</hgroup>
</header>
<div class="content">
% include libs/truncate_exec id=tut %}
</div>
<footer>
<p><a href="{{ site.baseurl }}{{ tut.url }}" class="btn">Read this »</a></p>
</footer>
</article>
-->
{% endif %}
{% endfor %}