-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
120 lines (104 loc) · 4.4 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
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
---
layout: default
menu: home
css: ['index.css', 'sidebar-popular-repo.css']
---
<style>
ul.a {list-style-type: circle;}
li {font-size: 15px;}
</style>
<section class="jumbotron" style="background-image: url(https://raw.githubusercontent.com/2econsulting/2econsulting.github.io/master/_img/nn.gif);background-repeat: no-repeat; background-size: 100% 100%;">
<!--<section class="jumbotron">-->
<div class="container">
<h1>{{ site.title }}</h1>
<div id="jumbotron-meta-info">
<span class="meta-info hvr-grow">
<span class="octicon octicon-organization"></span>
<a href="{{ site.company_url }}" target="_blank">{{ site.company }}</a>
</span>
<span class="meta-info hvr-grow">
<span class="octicon octicon-mark-github"></span>
<a href="{{ site.github_url }}" target="_blank">깃허브</a>
</span>
<!--
<span class="meta-info hvr-grow">
<span class="octicon octicon-plus"></span>
<a href="https://2econsulting.github.io/subscribe" target="_blank">구독</a>
</span>
-->
<span class="meta-info hvr-grow">
<span class="octicon octicon-mail"></span>
<a href="https://flaskapp2e.herokuapp.com" target="_blank">PFMS</a>
</span>
<span class="meta-info hvr-grow">
<span class="octicon octicon-graph"></span>
<a href="https://2econsulting.github.io/request/request" target="_blank">분석request</a>
</span>
</div>
</div>
</section>
<!--<section class="content container">-->
<div class="row">
<div class="col-md-3 text-center">
<h4 class="sidebar-title">[[ 데이터 사이언스 뉴스레터 ]]</h4>
<br>
{% assign sorted-newsletters = site.categories.newsletters | sort: 'title' | reverse %}
{% for newsletter in sorted-newsletters %}
<ul class="a">
<li><a href="{{ site.url }}{{ newsletter.url }}">{{ newsletter.title }}</a></li>
</ul>
{% endfor %}
</div>
<br>
<!-- Post List -->
<div class="col-md-6">
<div style="margin-top: -1%">
<form action="/search.html" method="get">
<label for="search-box"></label>
<input type="text" id="search-box" name="query">
<input type="submit" value="검색">
</form>
</div>
<ol class="post-list">
{% for post in paginator.posts %}
{% unless post.title contains '데이터 사이언스 뉴스레터' %}
<li class="post-list-item">
<h2 class="post-list-title">
<a class="hvr-underline-from-center" href="{{ site.url }}{{ post.url }}" style="line-height:normal;">{{ post.title }}</a>
</h2>
<p class="post-list-description" style="overflow:hidden ;position:relative; line-height:1.3em; max-height:3.9em; text-align:justify; margin-right:-1em; padding-right:1em;">
{{ post.excerpt | strip_html | strip }}
</p>
<p class="post-list-meta">
<span class="octicon octicon-calendar"></span> {{ post.date | date: "%Y/%m/%d" }}
</p>
</li>
{% endunless %}
{% endfor %}
</ol>
<!-- Pagination -->
{% include pagination.html %}
<!-- Pagination links -->
<!--
<div class="pagination">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path }}" class="previous">Previous</a>
{% else %}
<span class="previous">Previous</span>
{% endif %}
<span class="page_number ">Page: {{ paginator.page }} of {{ paginator.total_pages }}</span>
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path }}" class="next">Next</a>
{% else %}
<span class="next ">Next</span>
{% endif %}
</div>
-->
<!-- Comments -->
{% include disqus-comments.html %}
</div>
<div class="col-md-2" style="left:5%">
{% include sidebar-popular-repo.html %}
</div>
<!--</div>-->
</section>