-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdev.html
More file actions
72 lines (68 loc) · 1.8 KB
/
Copy pathdev.html
File metadata and controls
72 lines (68 loc) · 1.8 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
---
title: "개발일지"
layout: default
description: ""
header-img: "img/bg-profile.jpg"
---
<!--
Credits: this page shamelessly borrowed a lot from:
https://github.com/kitian616/jekyll-TeXt-theme
-->
<!-- Page Header -->
{% include intro-header.html type='page' short=true %}
<!-- Main Content -->
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<!-- Tags (as filter) -->
<div id='tag_cloud' class="tags tags-sup js-tags">
{% capture tags %}
{% for tag in site.tags %}
{% endfor %}
{% endcapture %}
{{ tags | split:'__SEPERATOR__' | sort }}
</div>
<!-- Article List -->
<div class="mini-post-list js-result">
{%- assign _sorted_list = site.posts | sort: 'date' | reverse -%}
{%- for _article in _sorted_list -%}
{%- if _article.tags contains "개발일지" -%}
<div class="post-preview item" data-tags="개발일지">
<a href="{{ _article.url | prepend: site.baseurl }}">
{% assign dow = _article.date | date: "%a" %}
<span class="post-date" style="font-weight:bold;
{% if dow == 'Sat' %}
color: blue;
{% elsif dow == 'Sun' %}
color: red;
{% endif %}
">
{{ _article.date | date: "%Y-%m-%d" }}
({{
dow
| replace: "Mon", "월"
| replace: "Tue", "화"
| replace: "Wed", "수"
| replace: "Thu", "목"
| replace: "Fri", "금"
| replace: "Sat", "토"
| replace: "Sun", "일"
}})
</span>
<span class="post-title">
{{ _article.title }}
</span>
{% if _article.subtitle %}
<span class="post-subtitle">
{{ _article.subtitle }}
</span>
{% endif %}
</a>
<hr>
</div>
{%- endif -%}
{%- endfor -%}
</div>
</div>
</div>
</div>