Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
source 'https://rubygems.org'
gem 'wdm', '>= 0.1.0' if Gem.win_platform?
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

이거 window에서 지킬 돌리는 것 때문에 추가한거죠? 이 파일 .gitignore에 추가 해야 할 것 같은데... #28 이슈 담당했던 @robinsongh381 연구원이랑 얘기해봐야할 듯 하네요

gem 'github-pages', group: :jekyll_plugins
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw]
23 changes: 21 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,41 @@
{% for post in paginator.posts %}
<hr>
<article>
<div class="heading"><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></div>



<div class="heading">

{% if post.categories %}
{% for category in post.categories %}
[<a href="{{ site.baseurl }}{{ site.category_page }}#{{ category | slugify }}" class="post-category">{{ category }}</a>]
{% endfor %}
{% endif %}

<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
</div>
<p class="meta"><a class="permalink" href="{{ site.baseurl }}{{ post.url }}">&#9679;</a> {{ post.date | date_to_string }}</p>


<p>
{% assign author = site.data.authors[post.author] %}
{% if author %}
<B>Written by {{author.name}}</B>
{% endif %}
</p>




<div>
{% if post.excerpt %}
{{ post.excerpt | strip_html | truncatewords: 30}}
{% else %}
{{ post.content }}
{% endif }
</div>
{% include tags.html %}
<div>{% %}</br></br>
{% include tags.html %} </div>
</article>

{% endfor %}
Expand Down