-
Notifications
You must be signed in to change notification settings - Fork 111
/
index.html
69 lines (68 loc) · 2.01 KB
/
index.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
---
layout: home
adsense: false
regenerate: true
---
<div class="blog-face">
<div>
<H3>
<a href="https://github.com/vimwiki/vimwiki">Vimwiki</a>
+
<a href="https://jekyllrb.com/">Jekyll</a>
+
<a href="https://pages.github.com/">Github.io</a>
</H3>
</div>
기억 보조용 위키
<div>
</div>
<div>
<a href="/blog/">블로그</a>
/
<a href="/tag/">태그</a>
<p>단축키 도움말: ctrl + h</p>
</div>
<div class="contact">
{% if site.github_username %}
<a href="https://github.com/{{ site.github_username }}">GitHub</a>
{% endif %}
{% if site.twitter_username %}
<a href="https://twitter.com/{{ site.twitter_username }}">Twitter</a>
{% endif %}
{% if site.email %}
<a href="mailto:{{ site.email }}">Email</a>
{% endif %}
<a href="{{ "/feed.xml" | prepend: site.baseurl }}">RSS</a>
</div>
</div>
<div>
<H3 class="indent">최근 변경된 문서</H3>
<ul class="post-list">
{% assign documents = site.wiki | sort: 'updated' | reverse %}
{% for doc in documents limit: 30 %}
{% if doc.public == true and doc.title != 'wiki'%}
<li>
<div class="post-item">
<a class="post-link" href="{{ doc.url | prepend: site.baseurl }}">
<div class="post-meta">
{{ doc.updated | date: "%Y.%m.%d" }}
-
{{ doc.title }}
</div>
<div class="post-excerpt">{{ doc.summary }}</div>
<ul class="tag-list">
<li class="post-tag">
{{ doc. tag }}
</li>
</ul>
</a>
</div>
</li>
{% endif %}
{% endfor %}
</ul>
<h4>
<a href="/recent/">전체 문서 리스트 보기 ({{ site.wiki | size | minus: 1 }} 항목)</a>
</h4>
</div>
{% include createLink.html %}