Skip to content

Commit

Permalink
feat: Add about.md
Browse files Browse the repository at this point in the history
feat: Add about.md

feat: Add about.md

feat: Add about.md

Revert "feat: Add about.md"

This reverts commit 6450c7c.

fix: Modify blog title

fix: Bug on About page & Modify header.html

fix: Add about.md code in for

fix: Modify _config.yml header_pages

fix: Modify _config.yml header_pages

feat: ADd layout for about

fix: Add about page layout

fix: Edit about.md file layout

fix: Edit about.md file layout

fix: Edit about.md file layout

fix: Edit about.md file layout
  • Loading branch information
anso33 committed Nov 14, 2023
1 parent 07ea535 commit 7d12e38
Show file tree
Hide file tree
Showing 7 changed files with 183 additions and 28 deletions.
22 changes: 11 additions & 11 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
# You can create any custom variable you would like, and they will be accessible
# in the templates via {{ site.myvariable }}.

title: Kernel360 Crew Tech Blog
title: Kernel360 Crew Blog
#email: your-email@domain.com
author: Kernel360

Expand All @@ -43,10 +43,10 @@ author: Kernel360
# copyright: "Unpublished Work (cleft) 2023-{currentYear} {author}"
copyright: "Copyright ยฉ Day 1 Company. All Rights Reserved"

description: >- # this means to ignore newlines until "baseurl:"
Write an awesome description for your new site here. You can edit this
line in _config.yml. It will appear in your document head meta (for
Google search results) and in your feed.xml site description.
# description: >- # this means to ignore newlines until "baseurl:"
# Write an awesome description for your new site here. You can edit this
# line in _config.yml. It will appear in your document head meta (for
# Google search results) and in your feed.xml site description.

baseurl: "" # the subpath of your site, e.g. /blog
url: "" # the base hostname & protocol for your site, e.g. https://example.com
Expand Down Expand Up @@ -153,12 +153,12 @@ yat:

# If you want to link only specific pages in your header, uncomment
# this and add the path to the pages in order as they should show up
# header_pages:
# - index.html
# - archives.html
# - categories.html
# - tags.html
# - about.md
header_pages:
- index.html
- archives.html
- categories.html
- tags.html
# - about.md

# Page default value
# defaults:
Expand Down
3 changes: 3 additions & 0 deletions _includes/views/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@
</label>

<div class="trigger">
<!-- ์ถ”๊ฐ€: about.md ํŽ˜์ด์ง€์— ๋Œ€ํ•œ ๋งํฌ -->
<a class="page-link" href="{{ '/about' | relative_url }}">ABOUT</a>

{%- for path in page_paths -%} {%- assign my_page = site.pages |
where: "path", path | first -%} {%- if my_page.title -%}

Expand Down
28 changes: 28 additions & 0 deletions _includes/youtubePlayer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<style>
.embed-container {
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
max-width: 100%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
</style>

<div class="embed-container">
<iframe
src="https://www.youtube.com/embed/{{ include.id }}"
frameborder="0"
allowfullscreen=""
onclick="ga('send', 'event', 'post', 'click', 'youtubePlayer');"
>
</iframe>
</div>
2 changes: 1 addition & 1 deletion _layouts/about.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
layout: post
layout: aboutlayouts
hidden:
- header
- navigator
Expand Down
74 changes: 74 additions & 0 deletions _layouts/aboutlayouts.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
---
layout: framework
banner:
banner_html: post-header.html
hidden: []
<!-- sidebar:
- article-menu -->
---

<div class="post">
<section>
{%- assign name = 'banner' -%} {%- include functions.html func='get_value'
-%} {%- assign banner = return -%} {%- assign name = 'hidden' -%} {%-
include functions.html func='get_value' -%} {%- assign hidden = return -%}
{%- assign result = hidden | where_exp: "item", "item == 'header'" -%} {%-
if banner == nil and result.size == 0 -%} {%- include views/post-header.html
-%} {%- endif -%} {%- include views/article.html -%} {%- assign result =
hidden | where_exp: "item", "item == 'navigator'" -%} {%- if result.size ==
0 -%}
<div class="post-nav">
{%- if page.previous -%}
<a
class="previous"
href="{{ page.previous.url | relative_url }}"
title="{{
page.previous.title | escape }}"
>{{ page.previous.title | escape | truncatewords: 6 }}</a
>
{%- else -%}
<span></span>
{%- endif -%} {%- if page.next -%}
<a
class="next"
href="{{ page.next.url | relative_url }}"
title="{{ page.next.title | escape }}"
>{{ page.next.title | escape | truncatewords: 6 }}</a
>
{%- else -%}
<span></span>
{%- endif -%}
</div>
{%- endif -%} {%- assign result = hidden | where_exp: "item", "item ==
'related_posts'" -%} {%- if result.size == 0 -%}
<div class="post-related">
<div>Related Articles</div>
<ul>
{% assign posts = site[page.collection] | sample:4 %} {%- for post in
posts -%} {%- assign post_item_class = "" -%} {%- if post.top -%} {%-
assign post_item_class = "top-post" -%} {%- endif -%}
<li class="{{ post_item_class }}">
<a
class="post-link"
href="{{ post.url | relative_url }}"
title="{{ post.title | escape }}"
>
{{ post.title | escape | truncatewords: 12 }} {%- include
views/post-badges.html -%}
</a>
</li>
{%- endfor -%}
</ul>
</div>
{%- endif -%} {%- assign result = hidden | where_exp: "item", "item ==
'comments'" -%} {%- if result.size == 0 -%}
<div class="post-comments">
{%- if page.comments != false -%} {%- if site.disqus.shortname -%} {%-
include extensions/comments/disqus.html -%} {%- endif -%} {%- if
site.gitment.username -%} {%- include extensions/comments/gitment.html -%}
{%- endif -%} {%- if site.utterances.repo -%} {%- include
extensions/comments/utterances.html -%} {%- endif -%} {%- endif -%}
</div>
{%- endif -%}
</section>
</div>
16 changes: 0 additions & 16 deletions about.html

This file was deleted.

66 changes: 66 additions & 0 deletions about.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
---
layout: about
title: About
---

## <span style="color:#6BD600">What we do</span>

## **Kernel360์€ <span style="color:#6BD600">{ํ•ต์‹ฌ}</span>์„ ๊ณ ๋ฏผํ•ฉ๋‹ˆ๋‹ค.**

<div style = "float: right;">
<img src="https://raw.githubusercontent.com/Kernel360/blog-image/main/kernel-crew-1/about/about.png" width="350px" alt="sample image">
</div>

์šฐ๋ฆฌ์˜ ๋ชฉํ‘œ๋Š” ๋‹จ์ˆœํžˆ '์ทจ์—…'์ด ์•„๋‹™๋‹ˆ๋‹ค. <br> ๋งŽ์€ ๊ฐœ๋ฐœ์ž ์–‘์„ฑ ๊ต์œก์—์„œ ์ทจ์—…๋งŒ์„ ๋ชฉํ‘œ๋กœ ํ•˜๋ฉฐ 'ํ•ต์‹ฌ'์„ ๋†“์น˜๋Š” ๊ฒฝ์šฐ๊ฐ€ ์žˆ์Šต๋‹ˆ๋‹ค. <br> ๊ทธ๋ ‡๊ฒŒ ํ˜„์žฅ์— ๋ฐฐ์ถœ๋œ ๊ฐœ๋ฐœ์ž๋“ค์€ ๋Œ€๋ถ€๋ถ„ ๊ธˆ๋ฐฉ ํ•œ๊ณ„์— ์ง๋ฉดํ•˜๊ฒŒ ๋ฉ๋‹ˆ๋‹ค. <br> ์™œ๋ƒํ•˜๋ฉด ๊ฐœ๋ฐœ์ž๋ผ๋Š” ์ง์—…์€ ์ด ์ง€๊ตฌ์—์„œ ๊ฐ€์žฅ ๋ณ€ํ™”๊ฐ€ ๋น ๋ฅด๊ณ  ๋งŽ์€ ํ•™์Šต์ด ํ•„์š”ํ•˜๊ธฐ ๋•Œ๋ฌธ์ด์ฃ .

## **๋‹น์‹ ์˜ <span style="color:#6BD600">{๋ฌดํ•œํ•œ ์ž ์žฌ๋ ฅ์„ ํ‘œ์ถœ}</span>ํ•  ์ˆ˜ ์žˆ๋„๋ก.**

์ผ์„ ์ฆ๊ธฐ๋ฉด์„œ ํ•œ๊ณ„์—†์ด ์„ฑ์žฅํ•˜๋Š” ๊ฐœ๋ฐœ์ž๊ฐ€ ๋˜๊ธฐ ์œ„ํ•ด์„œ๋Š” ํ˜„์žฌ ์ธ๊ธฐ์žˆ๋Š” ์–ธ์–ด๋‚˜ ํ”„๋ ˆ์ž„์›Œํฌ๋ฅผ ์•„๋Š” ๊ฒƒ๋ณด๋‹ค ์–ด๋–ค ์–ธ์–ด๋ฅผ ์‚ฌ์šฉํ•˜๋“  ๋น ๋ฅด๊ฒŒ ์ ์‘ํ•  ์ˆ˜ ์žˆ๋Š” ๊ฐœ๋ฐœ์˜ ๊ทผ๋ณธ ์ฆ‰, 'ํ•ต์‹ฌ'์„ ๋ช…ํ™•ํžˆ ์ดํ•ดํ•˜๋Š” ๊ฒƒ์ด ์ค‘์š”ํ•ฉ๋‹ˆ๋‹ค.

Kernel360์—์„œ๋Š” ํšŒ์‚ฌ์™€ ๊ฐ™์€ ํŒ€ ๊ทธ๋ฆฌ๊ณ  ํ˜„์žฅ์—์„œ์™€ ๊ฐ™์€ ์ˆ˜์ค€์˜ ํ”„๋กœ์ ํŠธ๋ฅผ ํ†ตํ•ด ๊ธฐํš, ๊ตฌํ˜„, ๋ฐฐํฌ, ์šด์˜๊นŒ์ง€์˜ ๊ฒฝํ—˜๊ณผ ํ•„์š”ํ•œ ์ง€์‹์„ ์ฐํ•œ ํ˜‘์—… ํ™˜๊ฒฝ์—์„œ ๋ฐฐ์›๋‹ˆ๋‹ค. ๊ทธ๋ฆฌ๊ณ  ๋ชจ๋“  ๊ณผ์ •์—์„œ ๋ช…ํ™•ํ•œ ๋ฐฉํ–ฅ์„ ์žก๋„๋ก
๋„์™€์ค„ ์—ฌ๋Ÿฌ๋ถ„๋“ค์˜ ์‚ฌ์ˆ˜์ธ ๋””๋ ‰ํ„ฐ์™€ ๋ฉ˜ํ† ๋“ค์ด ํ•จ๊ป˜ํ•˜์ฃ .

**๋งŒ์•ฝ ์–ด๋””์—์„ ๊ฐ€ <span style="color:#6BD600">{ํ•œ๊ณ„}</span>๋ฅผ ๋Š๊ผˆ๋‹ค๋ฉด, <span style="color:#6BD600">{ํ•ต์‹ฌ}</span>์„ ์ดํ•ดํ•˜๋ฉฐ ๋ฌดํ•œํžˆ ์„ฑ์žฅํ•  ์ˆ˜ ์žˆ๋Š” Kernel360๊ณผ ํ•จ๊ป˜ํ•˜์„ธ์š”.**

<br>

---

<br>

## {% include youtubePlayer.html id="rrl_V_9EDtI" %}

---

## **๊ฐ€๋ฅด์น˜์ง€ ์•Š์Šต๋‹ˆ๋‹ค. <br>์Šค์Šค๋กœ ์„ฑ์žฅํ•  ์ˆ˜ ์žˆ๋Š” <span style="color:#6BD600">{ํ™˜๊ฒฝ}</span>์„ ์ œ๊ณตํ•ฉ๋‹ˆ๋‹ค.**

ํ•™์ƒ๋“ค์˜ ์ž๊ธฐ์ฃผ๋„์  ํ•™์Šต์„ ๊ฐ•์กฐํ•˜๋ฉฐ ๋…๋ฆฝ์ ์œผ๋กœ ๋ฌธ์ œ๋ฅผ ์ •์˜ํ•˜๊ณ ํ•ด๊ฒฐํ•ด๋‚˜๊ฐ€๋Š” ๋Šฅ๋ ฅ์„ ๊ธฐ๋ฅผ ์ˆ˜ ์žˆ๋Š” ํ™˜๊ฒฝ์„ ์ œ๊ณตํ•ฉ๋‹ˆ๋‹ค.๋””๋ ‰ํ„ฐ๋Š” ํ•จ๊ป˜ํ•˜์—ฌ ํ•™์ƒ๋“ค์ด ๋ฌธ์ œ๋ฅผ ํ•ด๊ฒฐํ•  ์ˆ˜ ์žˆ๋„๋ก ์ง€์นจ๊ณผ ํ”ผ๋“œ๋ฐฑ์„ ์ œ๊ณตํ•˜๋ฉฐ์ด๋Ÿฌํ•œ ์ง€์›์„ ํ†ตํ•ด ํ•™์ƒ๋“ค์ด
์ž์‹ ์˜ ํ•™์Šต์„ ์ฃผ๋„ํ•˜๊ณ ์„ฑ์žฅํ•  ์ˆ˜ ์žˆ๋„๋ก ๋„์™€์ค๋‹ˆ๋‹ค.

## **๊ฒฝ์Ÿํ•˜์ง€ ์•Š์Šต๋‹ˆ๋‹ค. <br>๊ฒฐ๊ณผ๋ฌผ๋ณด๋‹ค <span style="color:#6BD600">{๊ณผ์ •}</span>์— ์ง‘์ค‘ํ•ฉ๋‹ˆ๋‹ค.**

๋ˆ„๊ฐ€ ๋” ์ข‹์€ ์ฝ”๋“œ๋ฅผ ์งฐ๋Š”๊ฐ€, ๋ˆ„๊ฐ€ ๋” ์™„์„ฑ๋„ ๋†’์€ ํ”„๋กœ์ ํŠธ๋ฅผ ํ–ˆ๋Š”๊ฐ€๋ณด๋‹ค๋Š”,๊ณต๋™์˜ ๋ชฉํ‘œ๋ฅผ ๊ฐ€์ง„ ๋™๋ฃŒ๋“ค๊ณผ ํ”ผ์–ด ๋ฆฌ๋ทฐ์™€ ํ† ๋ก , ํšŒ๊ณ , ํ”ผ๋“œ๋ฐฑ์„ ํ†ตํ•ด์ง€์‹๊ณผ ๊ฒฝํ—˜์„ ๊ณต์œ ํ•˜๋Š” ๊ณผ์ • ์†์—์„œ ์„œ๋กœ ์†Œํ†ตํ•˜๊ณ  ํ˜‘์—…ํ•˜๋Š” ์†Œํ”„ํŠธ
์Šคํ‚ฌ๊ณผ ์ฝ”๋“œ๋ฅผ ์ž‘์„ฑํ•˜๋ฉฐ ๋ฌธ์ œ๋ฅผ ํ•ด๊ฒฐํ•˜๋Š” ํ•˜๋“œ ์Šคํ‚ฌ์„ ๋™์‹œ์— ๊ฐ€์ ธ๊ฐ‘๋‹ˆ๋‹ค.

## **์ •๋‹ต์„ ์•Œ๋ ค์ฃผ์ง€ ์•Š์Šต๋‹ˆ๋‹ค. <br>๋ฌธ์ œ๋ฅผ ํŒŒ์•…ํ•˜๋Š” <span style="color:#6BD600">{๋ฐฉ๋ฒ•}</span>์„ ๋ฐฐ์›๋‹ˆ๋‹ค.**

์šฐ๋ฆฌ๋Š” ์ฃผ์–ด์ง„ ๋ฌธ์ œ๋งŒ ํ•ด๊ฒฐํ•˜์ง€ ์•Š์„ ๊ฒ๋‹ˆ๋‹ค.ํšŒ์‚ฌ์— ๋“ค์–ด๊ฐ€๋ฉด ๋ฌธ์ œ์ ์„ ์ฐพ๊ณ  ํ•ด๊ฒฐ๋ฐฉ๋ฒ•์„ ๊ณ ๋ฏผํ•ด์•ผํ•  ์ผ์ด ๋งŽ์Šต๋‹ˆ๋‹ค.๊ทธ๋ฆฌ๊ณ  ์ด๋Š” ์–ด๋–ค ํ•™๊ต๋‚˜ ํ•™์›์—์„œ๋„ ๊ฐ€๋ฅด์ณ์ฃผ์ง€ ์•Š์Šต๋‹ˆ๋‹ค.๊ทธ๋ ‡๊ธฐ์— ์šฐ๋ฆฌ๋Š” ํšŒ์‚ฌ์™€ ์œ ์‚ฌํ•œ ํ™˜๊ฒฝ์—์„œ ๊ฐœ๋ฐœ
์‚ฌ์ดํด์„ ์ฒด๊ณ„์ ์œผ๋กœ ๊ฒฝํ—˜ํ•˜๋ฉฐ ํ•ต์‹ฌ์„ ํŒŒ์•…ํ•˜๊ณ  ๋„“์€ ์‹œ์•ผ๋ฅผ ๊ฐ–๋Š” ๋ฒ•์„ ๋ฐฐ์›๋‹ˆ๋‹ค.

<br>

---

<br>

## **Kernel360 Tech Blog์˜ Crew๋ฅผ ์†Œ๊ฐœํ•ฉ๋‹ˆ๋‹ค.**

| **๋ฆฌ๋”** | **์•”๋ฒฝ๊ฐ€** | **๋ธ”๋กœ๊ทธ ์ฃผ์ธ** | **10์›”์˜ Kernel์ธ** | **Kernel Ace** |
| :---------------------------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------: |
| <img src="https://raw.githubusercontent.com/Kernel360/blog-image/main/kernel-crew-1/crew-image/๊ณ ๋ณ‘๋ฃก.png" width="140px" height="220px" alt="sample image"> | <img src="https://raw.githubusercontent.com/Kernel360/blog-image/main/kernel-crew-1/crew-image/๊ณ ๋ณ‘๋ฃก.png" width="140px" height="220px" alt="sample image"> | <img src="https://raw.githubusercontent.com/Kernel360/blog-image/main/kernel-crew-1/crew-image/๊ณ ๋ณ‘๋ฃก.png" width="140px" height="220px" alt="sample image"> | <img src="https://raw.githubusercontent.com/Kernel360/blog-image/main/kernel-crew-1/crew-image/๊ณ ๋ณ‘๋ฃก.png" width="140px" height="220px" alt="sample image"> | <img src="https://raw.githubusercontent.com/Kernel360/blog-image/main/kernel-crew-1/crew-image/๊ณ ๋ณ‘๋ฃก.png" width="140px" height="220px" alt="sample image"> |
| **๋ฆฌ๋”** | **์•”๋ฒฝ๊ฐ€** | **๋ธ”๋กœ๊ทธ ์ฃผ์ธ** | **10์›”์˜ Kernel์ธ** | **Kernel Ace** |
| <img src="https://raw.githubusercontent.com/Kernel360/blog-image/main/kernel-crew-1/crew-image/๊ณ ๋ณ‘๋ฃก.png" width="140px" height="220px" alt="sample image"> | <img src="https://raw.githubusercontent.com/Kernel360/blog-image/main/kernel-crew-1/crew-image/๊ณ ๋ณ‘๋ฃก.png" width="140px" height="220px" alt="sample image"> | <img src="https://raw.githubusercontent.com/Kernel360/blog-image/main/kernel-crew-1/crew-image/๊ณ ๋ณ‘๋ฃก.png" width="140px" height="220px" alt="sample image"> | <img src="https://raw.githubusercontent.com/Kernel360/blog-image/main/kernel-crew-1/crew-image/๊ณ ๋ณ‘๋ฃก.png" width="140px" height="220px" alt="sample image"> | <img src="https://raw.githubusercontent.com/Kernel360/blog-image/main/kernel-crew-1/crew-image/๊ณ ๋ณ‘๋ฃก.png" width="140px" height="220px" alt="sample image"> |
| **๋ฆฌ๋”** | **์•”๋ฒฝ๊ฐ€** | **๋ธ”๋กœ๊ทธ ์ฃผ์ธ** | **10์›”์˜ Kernel์ธ** | **Kernel Ace** |
| <img src="https://raw.githubusercontent.com/Kernel360/blog-image/main/kernel-crew-1/crew-image/๊ณ ๋ณ‘๋ฃก.png" width="140px" height="220px" alt="sample image"> | <img src="https://raw.githubusercontent.com/Kernel360/blog-image/main/kernel-crew-1/crew-image/๊ณ ๋ณ‘๋ฃก.png" width="140px" height="220px" alt="sample image"> | <img src="https://raw.githubusercontent.com/Kernel360/blog-image/main/kernel-crew-1/crew-image/๊ณ ๋ณ‘๋ฃก.png" width="140px" height="220px" alt="sample image"> | <img src="https://raw.githubusercontent.com/Kernel360/blog-image/main/kernel-crew-1/crew-image/๊ณ ๋ณ‘๋ฃก.png" width="140px" height="220px" alt="sample image"> | <img src="https://raw.githubusercontent.com/Kernel360/blog-image/main/kernel-crew-1/crew-image/๊ณ ๋ณ‘๋ฃก.png" width="140px" height="220px" alt="sample image"> |
| **๋ฆฌ๋”** | **์•”๋ฒฝ๊ฐ€** | **๋ธ”๋กœ๊ทธ ์ฃผ์ธ** | **10์›”์˜ Kernel์ธ** | **Kernel Ace** |
| <img src="https://raw.githubusercontent.com/Kernel360/blog-image/main/kernel-crew-1/crew-image/๊ณ ๋ณ‘๋ฃก.png" width="140px" height="220px" alt="sample image"> | <img src="https://raw.githubusercontent.com/Kernel360/blog-image/main/kernel-crew-1/crew-image/๊ณ ๋ณ‘๋ฃก.png" width="140px" height="220px" alt="sample image"> | <img src="https://raw.githubusercontent.com/Kernel360/blog-image/main/kernel-crew-1/crew-image/๊ณ ๋ณ‘๋ฃก.png" width="140px" height="220px" alt="sample image"> | <img src="https://raw.githubusercontent.com/Kernel360/blog-image/main/kernel-crew-1/crew-image/๊ณ ๋ณ‘๋ฃก.png" width="140px" height="220px" alt="sample image"> | <img src="https://raw.githubusercontent.com/Kernel360/blog-image/main/kernel-crew-1/crew-image/๊ณ ๋ณ‘๋ฃก.png" width="140px" height="220px" alt="sample image"> |

0 comments on commit 7d12e38

Please sign in to comment.