-
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
1 parent
0fd42be
commit 998fff2
Showing
60 changed files
with
1,161 additions
and
934 deletions.
There are no files selected for viewing
Binary file modified
BIN
+1.4 KB
(100%)
.sass-cache/ebfdce28b90f164040b60556a8d195c0fb42b4a0/no-style-please.scssc
Binary file not shown.
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,10 +1,10 @@ | ||
title: Hi, I’m Byeonghyeon Kang 👋🧑💻 # name of the site | ||
author: byeonghyeon kang # name of site's author | ||
title: Kang Byeong-hyeon 👨🏻💻 # name of the site | ||
author: Kang Byeonghyeon # name of site's author | ||
email: [email protected] # email of site's author | ||
url: https://kang-kibong.github.io/ # root address of the site | ||
baseurl: "/byeonghyeon-kang" # subpath of the site, e.g. "/blog" (leave it blank "" if you're site shouldn't use a subpath) | ||
description: > # description of the site (multiple lines allowed) | ||
byeonghyeon kang's dev blog | ||
Kang Byeonghyeon's dev blog | ||
permalink: /:slug.html | ||
|
||
|
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 |
---|---|---|
@@ -1,25 +1,21 @@ | ||
{%-if include.category-%} | ||
{%-assign posts = site.categories[include.category]-%} | ||
{%-else-%} | ||
{%-assign posts = site.posts-%} | ||
{%-endif-%} | ||
|
||
{%-if include.limit and posts.size > include.limit-%} | ||
{%-assign limit_exceeded = true-%} | ||
{%-else-%} | ||
{%-assign limit_exceeded = false-%} | ||
{%-endif-%} | ||
|
||
{%- if posts.size > 0 -%} | ||
<ul> | ||
{%- for post in posts limit: include.limit -%} | ||
<li> | ||
<span>{{- post.date | date: site.theme_config.date_format -}}</span> | ||
<a href="{{ post.url | relative_url }}">{{ post.title | downcase }}</a> | ||
</li> | ||
{%- endfor -%} | ||
{%- if include.show_more and limit_exceeded -%} | ||
<li><a href="{{ include.show_more_url }}">{{ include.show_more_text | default: "Show more..." }}</a></li> | ||
{%- endif -%} | ||
</ul> | ||
{%- endif -%} | ||
{%-if include.category-%} {%-assign posts = site.categories[include.category]-%} | ||
{%-else-%} {%-assign posts = site.posts-%} {%-endif-%} {%-if include.limit and | ||
posts.size > include.limit-%} {%-assign limit_exceeded = true-%} {%-else-%} | ||
{%-assign limit_exceeded = false-%} {%-endif-%} {%- if posts.size > 0 -%} | ||
<ul> | ||
{%- for post in posts limit: include.limit -%} | ||
<li> | ||
<span>{{- post.date | date: site.theme_config.date_format -}}</span> | ||
<a href="{{ post.url | relative_url }}" class="post-item" | ||
>{{ post.title }}</a | ||
> | ||
</li> | ||
{%- endfor -%} {%- if include.show_more and limit_exceeded -%} | ||
<li> | ||
<a href="{{ include.show_more_url }}" | ||
>{{ include.show_more_text | default: "Show more..." }}</a | ||
> | ||
</li> | ||
{%- endif -%} | ||
</ul> | ||
{%- endif -%} |
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
Oops, something went wrong.