-
Notifications
You must be signed in to change notification settings - Fork 121
/
style.html
27 lines (26 loc) · 1003 Bytes
/
style.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
---
layout: home
title: Tutorials | Typora Styles
---
<div id="content" class="content">
<h3>Styles Related</h3>
<ul class="category basic-posts">
{% for post in site.tags.style reversed %}
{% unless post.draft %}
{% assign title = post.title %}
<li>
<div class="article">
<article class="article" itemscope itemtype="http://schema.org/BlogPosting">
<header class="post-header">
<span class="title"><a itemprop="name" href="{{ post.url | prepend: site.github.url | prepend: site.baseurl}}" title="{{ title }}">{{ title }}</a></span>
<time class="date">
{% for tag in post.tags %}{{ tag }}{% unless tag == post.tags.last %}, {% endunless %}{% endfor %}
</time>
</header>
</article>
</div>
</li>
{% endunless %}
{% endfor %}
</ul>
</div>