forked from ssu-sccc/sccc.kr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsolution.html
60 lines (49 loc) · 1.45 KB
/
solution.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
---
layout: default
---
<article class="solution">
{% if page.title != "Solutions" %}
<div class="solution-list">
<a href="{{ site.baseurl }}/solutions">
<i class="fa fa-list"></i> 솔루션 목록
</a>
</div>
{% endif %}
<h1 class="post-title">{{ page.title }}</h1>
<p class="post-meta">
<time datetime="{{ page.date | date: "%Y-%m-%d" }}">{{ page.date | date: "%d-%m-%Y" }}</time>
{% if page.author %}
/
<span>@{{ page.author }}</span>
{% endif %}
<div class="algorithm-tags">
{% for tag in page.tags %}
<div class="ui label">
{{ tag | downcase }}
</div>
{% endfor %}
</div>
</p>
<div class="post-content">
{{ content }}
{% if page.next.url %}
<a class="link-to-post" href="{{ page.next.url }}">
<span class="link-to-post__next">⤧ Next post</span>
<span class="link-to-post__title">{{ page.next.title }}</span>
</a>
{% endif %}
{% if page.previous.url %}
<a class="link-to-post" href="{{ page.previous.url }}">
<span class="link-to-post__prev">⤧ Previous post</span>
<span class="link-to-post__title">{{ page.previous.title }}</span>
</a>
{% endif %}
</div>
{% if page.title != "Solutions" %}
<div class="solution-list">
<a href="{{ site.baseurl }}/solutions">
<i class="fa fa-list"></i> 솔루션 목록
</a>
</div>
{% endif %}
</article>