-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·72 lines (70 loc) · 2.18 KB
/
index.html
File metadata and controls
executable file
·72 lines (70 loc) · 2.18 KB
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
70
71
72
---
layout: home
adsense: true
---
<div class="home">
<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>해당 문서는 john grib님의 <a href="https://johngrib.github.io/wiki/my-wiki/">Vimwiki + Jekyll + Github.io로 나만의 위키를 만들자</a>를 바탕으로 만들었습니다.</div>
기억 보조용 위키
<div>
</div>
<div>
<a href="/about/">About anyjava</a>
/
<a href="/blog/">블로그</a>
/
<a href="/tag/">태그</a>
</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>최근 변경된 문서</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>
<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">
{% for tag in doc.tags %}
<li class="post-tag">
<a href="/tag/#{{tag}}" >#{{tag}}</a>
</li>
{% endfor %}
</ul>
</a>
</div>
</li>
{% endif %}
{% endfor %}
</ul>
<h4>
<a href="/recent/">최근 변경된 문서 전체 리스트 보기</a>
</h4>
</div>