-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtutorial.html
More file actions
25 lines (24 loc) · 771 Bytes
/
tutorial.html
File metadata and controls
25 lines (24 loc) · 771 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
---
layout: articlelist
title: List of Tutorial
---
{% assign sortedposts = site.tutorial | sort: 'id' | reverse %}
{% for post in sortedposts %}
{% unless post.draft==true %}
<!-- {% increment ncount %} -->
<div class="ui stackable one cards fluid">
<!-- <div class="ui three column doubling stackable grid"> -->
<a class="ui card orange" href="{{post.url}}">
<div class="content">
<div class="header">{{post.title}}</div>
<div class="meta" name="metainfo">
<span class="category" name="created">Posted on {{ post.date }}</span>
</div>
<div class="description tldr">
<p> {{ post.summary }}</p>
</div>
</div>
</a>
</div>
{% endunless %}
{% endfor %}