forked from gcdstoday/gcdstoday.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (71 loc) · 2.48 KB
/
index.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
---
layout: default
---
<section>
<center><h3>거창대성고등학교 청원 게시판</h3></center>
<center><span style="border: 3px solid #666666; background-color: #666666; color: white; border-radius: 5px; padding: 5px;"><a style="text-decoration: none; color:white; margin: 10px;" href="https://forms.gle/tFBnZ3MYjoZMi7cy8" target:"_blank">지금 청원하기</a>|<a style="text-decoration: none; color: white; margin: 10px;" href="/petitions">청원 목록</a>|<a style="text-decoration: none; color: white; margin: 10px;" href="/tosurvive">대고에서 살아남기</a>|<a style="text-decoration: none; color: white; margin: 10px;" href="/emoticons">대고티콘</a></center>
</section>
<section>
{% for post in site.posts %}
{% if post.status == "solved" %}
<h3>답변된 청원</h3>
{% break %}
{% endif %}
{% endfor %}
{% for post in site.posts %}
{% if post.status == "solved" %}
<ul>
<li>
<div class="post-date code">
<span>{{ post.date | date: "%b %d" }}</span>
</div>
<div class="title">
<span style="border: 1px solid Green; background-color: Green; color: white; padding: 2px; border-radius: 5px; margin: 3px auto;">답변완료</span>
<a href="{{ post.url | prepend: site.baseurl | prepend: site.url }}">{{ post.title }}</a>
</div>
</li>
</ul>
{% endif %}
{% endfor %}
{% for post in site.posts %}
{% if post.status == "unsolved" %}
<h3><br>진행 중인 청원</h3>
{% break %}
{% endif %}
{% endfor %}
{% for post in site.posts %}
{% if post.status == "unsolved" %}
<ul>
<li>
<div class="post-date code">
<span>{{ post.date | date: "%b %d" }}</span>
</div>
<div class="title">
<span style="border: 1px solid Gold; background-color: Gold; color: white; padding: 2px; border-radius: 5px; margin: 3px auto;">진행중</span>
<a href="{{ post.url | prepend: site.baseurl | prepend: site.url }}">{{ post.title }}</a>
</div>
</li>
</ul>
{% endif %}
{% endfor %}
{% for post in site.posts %}
{% if post.status == "tips" %}
<h3><br>대고 생존 팁</h3>
{% break %}
{% endif %}
{% endfor %}
{% for post in site.posts %}
{% if post.status == "tips" %}
<ul>
<li>
<div class="post-date code">
<span>{{ post.date | date: "%b %d" }}</span>
</div>
<div class="title">
<a href="{{ post.url | prepend: site.baseurl | prepend: site.url }}">{{ post.title }}</a>
</div>
</li>
</ul>
{% endif %}
{% endfor %}
</section>