Skip to content

Commit

Permalink
design: 페이지 디자인 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
kang-kibong committed Aug 10, 2024
1 parent 0fd42be commit 998fff2
Show file tree
Hide file tree
Showing 60 changed files with 1,161 additions and 934 deletions.
Binary file not shown.
6 changes: 3 additions & 3 deletions _config.yml
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

Expand Down
12 changes: 6 additions & 6 deletions _includes/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,21 @@

{%-seo title=false-%} {%-feed_meta-%}

<meta name="title" content="Hi, I’m Byeonghyeon Kang 👋🧑‍💻" />
<meta name="description" content="byeonghyeon kang's dev blog" />
<meta name="title" content="Kang Byeong-hyeon 👨🏻‍💻" />
<meta name="description" content="Kang Byeong-hyeon's dev blog" />

<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://kang-kibong.github.io/" />
<meta property="og:title" content="Hi, I’m Byeonghyeon Kang 👋🧑‍💻" />
<meta property="og:description" content="byeonghyeon kang's dev blog" />
<meta property="og:title" content="Kang Byeong-hyeon 👨🏻‍💻" />
<meta property="og:description" content="Kang Byeong-hyeon's dev blog" />
<meta property="og:image" content="logo.png" />

<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://kang-kibong.github.io/" />
<meta property="twitter:title" content="Hi, I’m Byeonghyeon Kang 👋🧑‍💻" />
<meta property="twitter:description" content="byeonghyeon kang's dev blog" />
<meta property="twitter:title" content="Kang Byeong-hyeon 👨🏻‍💻" />
<meta property="twitter:description" content="Kang Byeong-hyeon's dev blog" />
<meta property="twitter:image" content="logo.png" />

<link
Expand Down
46 changes: 21 additions & 25 deletions _includes/post_list.html
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 -%}
2 changes: 1 addition & 1 deletion _layouts/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
---

<header>
<h1 class="title">Hi, I’m <strong>Byeonghyeon Kang</strong> 👨🏻‍💻</h1>
<h1 class="title">Hi, I’m <strong>Kang Byeong-hyeon</strong> 👨🏻‍💻</h1>
<div class="profile">
<div>
<p><strong>웹 프론트엔드</strong> 개발을 좋아해요.</p>
Expand Down
27 changes: 17 additions & 10 deletions _sass/no-style-please.scss
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,12 @@ p {
a {
color: #b9b9b9;
font-weight: 600;
text-decoration: underline;
transition: all 0.1s ease;

&:hover {
color: rgb(255, 111, 15);
}
}

li {
Expand Down Expand Up @@ -149,6 +155,7 @@ img {
text-decoration: underline;
}
}

.profile {
padding: 32px 0 48px 0;
display: flex;
Expand All @@ -171,6 +178,16 @@ img {
}
}

.profile-image {
width: 250px;
height: 250px;
background-image: url("../images/profile.png");
background-position: center;
background-size: cover;
background-position-x: -50px;
background-repeat: no-repeat;
}

@media screen and (max-width: "600px") {
.profile {
flex-direction: column;
Expand All @@ -181,13 +198,3 @@ img {
margin-bottom: 26px;
}
}

.profile-image {
width: 250px;
height: 250px;
background-image: url("../images/profile.png");
background-position: center;
background-size: cover;
background-position-x: -50px;
background-repeat: no-repeat;
}
22 changes: 11 additions & 11 deletions _site/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,33 +7,33 @@
<title>About</title><!-- Begin Jekyll SEO tag v2.7.1 -->
<meta name="generator" content="Jekyll v3.9.5" />
<meta property="og:title" content="About" />
<meta name="author" content="byeonghyeon kang" />
<meta name="author" content="Kang Byeonghyeon" />
<meta property="og:locale" content="en_US" />
<meta name="description" content="byeonghyeon kang’s dev blog" />
<meta property="og:description" content="byeonghyeon kang’s dev blog" />
<meta name="description" content="Kang Byeonghyeon’s dev blog" />
<meta property="og:description" content="Kang Byeonghyeon’s dev blog" />
<link rel="canonical" href="http://localhost:4000/byeonghyeon-kang/about" />
<meta property="og:url" content="http://localhost:4000/byeonghyeon-kang/about" />
<meta property="og:site_name" content="Hi, I’m Byeonghyeon Kang 👋🧑‍💻" />
<meta property="og:site_name" content="Kang Byeong-hyeon 👨🏻‍💻" />
<meta name="twitter:card" content="summary" />
<meta property="twitter:title" content="About" />
<script type="application/ld+json">
{"url":"http://localhost:4000/byeonghyeon-kang/about","author":{"@type":"Person","name":"byeonghyeon kang"},"@type":"WebPage","description":"byeonghyeon kang’s dev blog","headline":"About","@context":"https://schema.org"}</script>
{"url":"http://localhost:4000/byeonghyeon-kang/about","author":{"@type":"Person","name":"Kang Byeonghyeon"},"@type":"WebPage","description":"Kang Byeonghyeon’s dev blog","headline":"About","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
<link type="application/atom+xml" rel="alternate" href="http://localhost:4000/byeonghyeon-kang/feed.xml" title="Hi, I’m Byeonghyeon Kang 👋🧑‍💻" /><meta name="title" content="Hi, I’m Byeonghyeon Kang 👋🧑‍💻" />
<meta name="description" content="byeonghyeon kang's dev blog" />
<link type="application/atom+xml" rel="alternate" href="http://localhost:4000/byeonghyeon-kang/feed.xml" title="Kang Byeong-hyeon 👨🏻‍💻" /><meta name="title" content="Kang Byeong-hyeon 👨🏻‍💻" />
<meta name="description" content="Kang Byeong-hyeon's dev blog" />

<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://kang-kibong.github.io/" />
<meta property="og:title" content="Hi, I’m Byeonghyeon Kang 👋🧑‍💻" />
<meta property="og:description" content="byeonghyeon kang's dev blog" />
<meta property="og:title" content="Kang Byeong-hyeon 👨🏻‍💻" />
<meta property="og:description" content="Kang Byeong-hyeon's dev blog" />
<meta property="og:image" content="logo.png" />

<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://kang-kibong.github.io/" />
<meta property="twitter:title" content="Hi, I’m Byeonghyeon Kang 👋🧑‍💻" />
<meta property="twitter:description" content="byeonghyeon kang's dev blog" />
<meta property="twitter:title" content="Kang Byeong-hyeon 👨🏻‍💻" />
<meta property="twitter:description" content="Kang Byeong-hyeon's dev blog" />
<meta property="twitter:image" content="logo.png" />

<link
Expand Down
22 changes: 11 additions & 11 deletions _site/api-통신부터-에러-핸들링까지-feat-axios.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,35 +7,35 @@
<title>API 통신부터 에러 핸들링까지(feat. Axios)</title><!-- Begin Jekyll SEO tag v2.7.1 -->
<meta name="generator" content="Jekyll v3.9.5" />
<meta property="og:title" content="API 통신부터 에러 핸들링까지(feat. Axios)" />
<meta name="author" content="byeonghyeon kang" />
<meta name="author" content="Kang Byeonghyeon" />
<meta property="og:locale" content="en_US" />
<meta name="description" content="byeonghyeon kang’s dev blog" />
<meta property="og:description" content="byeonghyeon kang’s dev blog" />
<meta name="description" content="Kang Byeonghyeon’s dev blog" />
<meta property="og:description" content="Kang Byeonghyeon’s dev blog" />
<link rel="canonical" href="http://localhost:4000/byeonghyeon-kang/api-%ED%86%B5%EC%8B%A0%EB%B6%80%ED%84%B0-%EC%97%90%EB%9F%AC-%ED%95%B8%EB%93%A4%EB%A7%81%EA%B9%8C%EC%A7%80-feat-axios.html" />
<meta property="og:url" content="http://localhost:4000/byeonghyeon-kang/api-%ED%86%B5%EC%8B%A0%EB%B6%80%ED%84%B0-%EC%97%90%EB%9F%AC-%ED%95%B8%EB%93%A4%EB%A7%81%EA%B9%8C%EC%A7%80-feat-axios.html" />
<meta property="og:site_name" content="Hi, I’m Byeonghyeon Kang 👋🧑‍💻" />
<meta property="og:site_name" content="Kang Byeong-hyeon 👨🏻‍💻" />
<meta property="og:type" content="article" />
<meta property="article:published_time" content="2024-07-12T00:00:00+09:00" />
<meta name="twitter:card" content="summary" />
<meta property="twitter:title" content="API 통신부터 에러 핸들링까지(feat. Axios)" />
<script type="application/ld+json">
{"dateModified":"2024-07-12T00:00:00+09:00","datePublished":"2024-07-12T00:00:00+09:00","mainEntityOfPage":{"@type":"WebPage","@id":"http://localhost:4000/byeonghyeon-kang/api-%ED%86%B5%EC%8B%A0%EB%B6%80%ED%84%B0-%EC%97%90%EB%9F%AC-%ED%95%B8%EB%93%A4%EB%A7%81%EA%B9%8C%EC%A7%80-feat-axios.html"},"url":"http://localhost:4000/byeonghyeon-kang/api-%ED%86%B5%EC%8B%A0%EB%B6%80%ED%84%B0-%EC%97%90%EB%9F%AC-%ED%95%B8%EB%93%A4%EB%A7%81%EA%B9%8C%EC%A7%80-feat-axios.html","author":{"@type":"Person","name":"byeonghyeon kang"},"@type":"BlogPosting","description":"byeonghyeon kang’s dev blog","headline":"API 통신부터 에러 핸들링까지(feat. Axios)","@context":"https://schema.org"}</script>
{"dateModified":"2024-07-12T00:00:00+09:00","datePublished":"2024-07-12T00:00:00+09:00","mainEntityOfPage":{"@type":"WebPage","@id":"http://localhost:4000/byeonghyeon-kang/api-%ED%86%B5%EC%8B%A0%EB%B6%80%ED%84%B0-%EC%97%90%EB%9F%AC-%ED%95%B8%EB%93%A4%EB%A7%81%EA%B9%8C%EC%A7%80-feat-axios.html"},"url":"http://localhost:4000/byeonghyeon-kang/api-%ED%86%B5%EC%8B%A0%EB%B6%80%ED%84%B0-%EC%97%90%EB%9F%AC-%ED%95%B8%EB%93%A4%EB%A7%81%EA%B9%8C%EC%A7%80-feat-axios.html","author":{"@type":"Person","name":"Kang Byeonghyeon"},"@type":"BlogPosting","description":"Kang Byeonghyeon’s dev blog","headline":"API 통신부터 에러 핸들링까지(feat. Axios)","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
<link type="application/atom+xml" rel="alternate" href="http://localhost:4000/byeonghyeon-kang/feed.xml" title="Hi, I’m Byeonghyeon Kang 👋🧑‍💻" /><meta name="title" content="Hi, I’m Byeonghyeon Kang 👋🧑‍💻" />
<meta name="description" content="byeonghyeon kang's dev blog" />
<link type="application/atom+xml" rel="alternate" href="http://localhost:4000/byeonghyeon-kang/feed.xml" title="Kang Byeong-hyeon 👨🏻‍💻" /><meta name="title" content="Kang Byeong-hyeon 👨🏻‍💻" />
<meta name="description" content="Kang Byeong-hyeon's dev blog" />

<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://kang-kibong.github.io/" />
<meta property="og:title" content="Hi, I’m Byeonghyeon Kang 👋🧑‍💻" />
<meta property="og:description" content="byeonghyeon kang's dev blog" />
<meta property="og:title" content="Kang Byeong-hyeon 👨🏻‍💻" />
<meta property="og:description" content="Kang Byeong-hyeon's dev blog" />
<meta property="og:image" content="logo.png" />

<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://kang-kibong.github.io/" />
<meta property="twitter:title" content="Hi, I’m Byeonghyeon Kang 👋🧑‍💻" />
<meta property="twitter:description" content="byeonghyeon kang's dev blog" />
<meta property="twitter:title" content="Kang Byeong-hyeon 👨🏻‍💻" />
<meta property="twitter:description" content="Kang Byeong-hyeon's dev blog" />
<meta property="twitter:image" content="logo.png" />

<link
Expand Down
Loading

0 comments on commit 998fff2

Please sign in to comment.