-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwiki.html
More file actions
executable file
·50 lines (42 loc) · 1.53 KB
/
Copy pathwiki.html
File metadata and controls
executable file
·50 lines (42 loc) · 1.53 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
---
layout: document
---
{% assign thisName = page.id | remove: '/wiki/' %}
<input type="hidden" id="thisName" value="{{ thisName }}"/>
<div class="post">
<header class="post-header">
<h1 class="post-title">{{ page.title }}</h1>
<p>
<a href="{{ site.edit }}/{{ thisName }}.md">편집하기</a>
<a href="{{ site.issue }}?title={{ page.title | url_encode }}&body=의견을%20남겨주세요">의견 남기기</a>
</p>
<p class="edit-date"><a href="{{ site.blame }}/{{ thisName }}.md" target="_blank">created: {{ page.date | date: '%Y.%m.%d' }}</a></p>
<p class="edit-date"><a href="{{ site.blame }}/{{ thisName }}.md" target="_blank">updated: {{ page.updated | date: '%Y.%m.%d' }}</a></p>
{% raw %}
<div id="parent-list">
<p v-if="list.length > 0">상위 문서:
<span v-for="(item, ind) in list">
<a v-bind="{ href : item.url }">{{ item.title }}</a>
<span v-if="ind < list.length - 1"> - </span>
</span>
</p>
</div>
{% endraw %}
{% if page.tags %}
{% include post-tags.html %}
{% endif %}
{% if page.summary %}
<h2>{{ page.summary }}</h2>
{% endif %}
</header>
<article class="post-content">
{{ content }}
</article>
{% if page.comment != false %}
{% include comment.html %}
{% endif%}
</div>
{% include createLink.html %}
<script src="/js/vue.js"></script>
<script src="/js/axios.min.js"></script>
<script async src="/js/parent.js"></script>