Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jeongsik-woo committed Jul 24, 2018
1 parent f296e6e commit f5ecaec
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 2 deletions.
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ gem 'jekyll'
group :jekyll_plugins do
gem "jekyll-paginate"
gem "pygments.rb"
gem "jekyll-last-modified-at"
end

1 change: 1 addition & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,4 @@ BASE_PATH:

gems:
- jekyll-paginate
- jekyll-last-modified-at
27 changes: 26 additions & 1 deletion _includes/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,31 @@
<head>
<meta charset="utf-8">
<title>{{ page.title }}</title>


<meta property="og:title" content="{{ page.title }}">

<!-- 아이템을 식별하기 위해 사용하시는 유일한 키를 입력해 주셔야 하며, 영문 숫자 일부 특수문자(&=_/-.)를 입력하실 수 있으며, 동일한 아이템의 경우, PC와 모바일에서 동일한 아이템 ID 값을 가져야 합니다. 최대 64자 -->
<meta property="dable:item_id" content="{{ page.id }}">

<!-- 아이템 URL (필수): 필요없는 파라미터들은 빼고 입력해주세요 -->

<meta property="og:url" content="http://jays1204.github.io{{ page.url }}">

<meta property="og:description" content="{{ page.description }}"> <!-- (필수) -->

<!-- 아이템 이미지 URL (필수): 크기 800x600, 용량 200KB 이하의 이미지 사용을 권장합니다. 너무 큰 이미지를 입력할 경우 전송 비용이 급증할 수 있습니다. -->
<meta property="og:image" content="http://jays1204.github.io/img/jays_profile_pic.jpg?s=150">

<!-- 아이템 작성자(기자명) (필수) -->
<meta property="dable:author" content="{{ site.author.name }}">

<!-- 아이템 카테고리 -->
<meta property="article:section" content="dev"> <!-- 메인 카테고리 (필수) -->

<!-- 아이템 작성일(ISO 8601) (필수) -->
<meta property="article:published_time" content="{{ page.last_modified_at }}"> <!-- 예(한국시간 오후 1:20) -->

{% if page.description %}
<meta name="description" content="{{ page.description }}">
{% endif %}
Expand Down Expand Up @@ -37,7 +62,7 @@
e.async=1;e.charset='utf-8';e.src='//static.dable.io/dist/plugin.min.js';
_=a.getElementsByTagName(l)[0];_.parentNode.insertBefore(e,_);
})(window,document,'dable','script');
dable('setService', 'dable.io');
dable('setService', 'jays1204.github.io');
dable('sendLog');
</script>
</head>
Expand Down
2 changes: 1 addition & 1 deletion _includes/post.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ <h1>{{ page.title }} {% if page.tagline %}<small>{{page.tagline}}</small>{% endi

<article>

<div class="col-sm-10">
<div class="col-sm-10" itemprop="articleBody">
<span class="post-date">
{% assign d = page.date | date: "%d" | plus:'0' %}
{{ page.date | date: "%B" }}
Expand Down

0 comments on commit f5ecaec

Please sign in to comment.