-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
42 lines (39 loc) · 1.68 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
---
layout: default
---
<section class="jumbotron text-xs-center">
<div class="container">
<h1 class="jumbotron-heading">{{ site.title }}<br>{{ site.title_en }}</h1>
<p> </p>
<a href="http://goo.gl/forms/k9k7EruqbP" target="_blank" class="btn btn-lg btn-secondary text-muted">2016 총선 특집!</a>
</div>
</section>
<div class="album text-muted">
<div class="container">
<div class="row">
{% for app in site.data.apps %}
<div class="col-sm-6 col-lg-4 grid-unit">
<div class="card">
<div class="card-block">
{% if app.country %}<span class="label label-pill label-default text-right clearfix">{{ app.country }}{% endif %}</span>
<h3 class="card-title">{{ app.title }}</h3>
<p class="card-text">{{ app.excerpt | replace:'\n', '<br>' | markdownify }}</p>
<p class="links">
<a target="_blank" href="{{ app.url }}" class="btn btn-secondary text-muted"><i class="fa fa-link"></i> 바로가기</a>
{% if app.source %}
<a target="_blank" href="{{ app.source }}" class="btn btn-secondary text-muted"><i class="fa fa-lg fa-github"></i></a>
{% endif %}
{% if app.facebook %}
<a target="_blank" href="{{ app.facebook }}" class="btn btn-secondary text-muted"><i class="fa fa-lg fa-facebook-official"></i></a>
{% endif %}
{% if app.twitter %}
<a target="_blank" href="{{ app.twitter }}" class="btn btn-secondary text-muted"><i class="fa fa-lg fa-twitter"></i></a>
{% endif %}
</p>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>