forked from imreplay/blog_old
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
imreplay
committed
Jul 10, 2018
1 parent
b2e7dc8
commit 16a0cc4
Showing
14 changed files
with
91 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,5 @@ group :jekyll_plugins do | |
gem "jekyll-sitemap" | ||
gem "jekyll-paginate" | ||
gem "jekyll-algolia" | ||
gem 'jemoji' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
## 이모지 사용법 알아보기 | ||
|
||
https://www.webpagefx.com/tools/emoji-cheat-sheet/ |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<nav class="nav__list"> | ||
<input id="ac-toc" name="accordion-toc" type="checkbox" /> | ||
<label for="ac-toc">{{ site.data.ui-text[site.locale].menu_label | default: "Toggle Menu" }}</label> | ||
<ul class="nav__items" id="category_tag_menu"> | ||
<li> | ||
<span class="nav__sub-title" v-on:click='togglec()'>Categories</span> | ||
<ul v-show="flag_c"> | ||
{% for category in site.categories %} | ||
<li><a href="/categories/{{category[0] | slugify}}" class="">{{category[0] | capitalize}} ({{category[1].size}})</a></li> | ||
{% endfor %} | ||
</ul> | ||
|
||
<span class="nav__sub-title" v-on:click='togglet()'>tags</span> | ||
<ul v-show="flag_t"> | ||
{% for tag in site.tags %} | ||
<li><a href="/tags/#{{tag[0] | slugify}}" class="">{{tag[0] | capitalize }} ({{tag[1].size}})</a></li> | ||
{% endfor %} | ||
</ul> | ||
|
||
</li> | ||
|
||
</ul> | ||
</nav> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
title: "Post about Blogging" | ||
layout: archive | ||
permalink: /categories/blogging | ||
author_profile: true | ||
sidebar_main: true | ||
--- | ||
|
||
|
||
{% for post in site.categories.blogging %} | ||
{% include archive-single.html type=page.entries_layout %} | ||
{% endfor %} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
title: "Post about Wargame" | ||
layout: archive | ||
permalink: /categories/wargame | ||
author_profile: true | ||
sidebar_main: true | ||
--- | ||
|
||
|
||
{% for post in site.categories.Wargame %} | ||
{% include archive-single.html type=page.entries_layout %} | ||
{% endfor %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,5 @@ title: "Posts by Category" | |
layout: categories | ||
permalink: /categories/ | ||
author_profile: true | ||
sidebar_main: true | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,5 @@ title: "Posts by Tag" | |
permalink: /tags/ | ||
layout: tags | ||
author_profile: true | ||
sidebar_main: true | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
--- | ||
layout: home | ||
author_profile: true | ||
sidebar_main: true | ||
--- |