forked from iamleejihye/iamleejihye.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpost.html
122 lines (112 loc) · 3.25 KB
/
post.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
---
layout: default
---
<div class="post">
<div class="post-info">
<div class="post-type-tag">
{% if page.draft == true %}
<div class="catalogue-tag">
Coming Soon
</div>
{% endif %}
<div class="post-type">
{% if page.tags %}
{% for tag in page.tags %}
{% if site.data.tags contains tag %}
<span class="type">{{ site.data.format[tag] }}</span>
{% endif %}
{% endfor %}
{% endif %}
</div>
</div>
<h1 class="post-title">
{{ page.title }}
</h1>
<!-- <h2 class="post-subtitle">
{{ page.subtitle }}
<br>
<span>Written by</span>
{% if page.author %}
{{ page.author }}
{% else %}
{{ site.author.name }}
{% endif %}
<span>on </span><time datetime="{{ page.date }}">{{ page.date | date: "%B %d, %Y" }}</time>
</h2> -->
</div>
<!--포트폴리오 상단 정보-->
<!--
{% if page.portfolio == true %}
<article class="portfolio-info">
<div>
<span class="info-title">Role</span>
<p class="info-medium">{{ page.role-title }}</p>
<p class="info-small">{{ page.role-specific }}</p>
</div>
<div>
<span class="info-title">Team</span>
<p class="info-medium">{{ page.team }}</p>
</div>
<div>
<span class="info-title">Platforms</span>
<p class="info-medium">{{ page.platforms }}</p>
</div>
<div>
<span class="info-title">Date</span>
<p class="info-medium">{{ page.date }}</p>
</div>
</article>
{% endif %} -->
<!--draft 일 때-->
{% if page.draft == true %}
<div class="catalogue-draft-message">
<h1>
🙋 Coming Soon!
</h1>
현재 열심히 글을 쓰고 있어요. 조금만 기다려주세요!
</div>
{% endif %}
<!--큐레이션 영역-->
{{ content }}
{% if page.book == true %}
{% if page.ridibooks == true %}
{% for book-list in site.data[page.data-name] %}
<a href="https://ridibooks.com/books/{{ book-list.bookid }}" target="_blank" class="book-link">
<img class="book-cover transition" src="https://misc.ridibooks.com/cover/{{ book-list.bookid }}/xxlarge"/>
</a>
{% endfor %}
{% endif %}
{% if page.ridiselect == true %}
{% for book-list in site.data[page.data-name] %}
<a href="https://select.ridibooks.com/book/{{ book-list.bookid }}" target="_blank" class="book-link">
<img class="book-cover transition" src="https://misc.ridibooks.com/cover/{{ book-list.bookid }}/xxlarge?dpi=xxhdpi"/>
</a>
{% endfor %}
{% endif %}
{% endif %}
<br><br><br>
<script src="https://giscus.app/client.js"
data-repo="5eonhee/5eonhee.github.io"
data-repo-id="R_kgDOI7NX8g"
data-category="Announcements"
data-category-id="DIC_kwDOI7NX8s4CUP1E"
data-mapping="pathname"
data-strict="0"
data-reactions-enabled="1"
data-emit-metadata="0"
data-input-position="bottom"
data-theme="light_tritanopia"
data-lang="en"
crossorigin="anonymous"
async>
</script>
</div>
<div class="pagination">
{% if page.next.url %}
<a href="{{ page.next.url | prepend: site.baseurl }}" class="left arrow">←</a>
{% endif %}
{% if page.previous.url %}
<a href="{{ page.previous.url | prepend: site.baseurl }}" class="right arrow">→</a>
{% endif %}
<a href="#" class="top">Top</a>
</div>