forked from typora/support.typora.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
what's-new.html
48 lines (45 loc) · 1.43 KB
/
what's-new.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
47
48
---
layout: post
title: What's New
redirect_from: /What's-New/
---
<div id="list-contents">
<h3>Change Log</h3>
<ul class="category basic-posts">
{% assign result = site.categories.draftnew %}
{% assign result = result | concat: site.categories.new %}
{% for post in result %}
{% 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">{{ post.date | date: "%Y-%m-%d" }}</time>
</header>
</article>
</div>
</li>
{% endunless %}
{% endfor %}
</ul>
<h3>News / Announcements</h3>
<ul class="category basic-posts">
{% for post in site.categories.announcement %}
{% 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">{{ post.date | date: "%Y-%m-%d" }}</time>
</header>
</article>
</div>
</li>
{% endunless %}
{% endfor %}
</ul>
</div>