- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtutorials.html
More file actions
Latest commit
20 lines (16 loc) · 614 Bytes
/
Copy pathtutorials.html
File metadata and controls
20 lines (16 loc) · 614 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
layout: default
---
<pclass="subhead">These are the past 10 posts that could be remotely classified as tutorials.</p>
<divclass="posts">
{% for post in site.tags.tutorial limit:10 %}
<articleclass="post">
<h1><ahref="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
<asideclass="author-info">Written on {{ post.date | date: "%B %e, %Y" }}</aside>
<divclass="entry">
{{ post.content | truncatewords:40}}
</div>
<ahref="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More about {{ post.title }}</a>
</article>
{% endfor %}
</div>