generated from maximevaillancourt/digital-garden-jekyll-template
-
-
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
Showing
22 changed files
with
159 additions
and
76 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 |
---|---|---|
|
@@ -13,3 +13,6 @@ _includes/notes_graph.json | |
|
||
# Obsidian config | ||
.obsidian/ | ||
.makemd/ | ||
.space/ | ||
.Tags/ |
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 |
---|---|---|
@@ -1 +1,45 @@ | ||
This is the footer. Include anything you'd like here, like a link to an <a class="internal-link" href="{{ site.baseurl }}/about">About</a> page. | ||
<footer> | ||
<div class="social-icons"> | ||
<a href="https://github.com/Monixc" target="_blank" rel="noopener noreferrer"> | ||
<i class="fab fa-github"></i> | ||
</a> | ||
<a href="https://monicx.tistory.com/" target="_blank" rel="noopener noreferrer"> | ||
<i class="fas fa-blog"></i> | ||
</a> | ||
<a href="https://www.instagram.com/dev.monicx" target="_blank" rel="noopener noreferrer"> | ||
<i class="fab fa-instagram"></i> | ||
</a> | ||
</div> | ||
|
||
</footer> | ||
|
||
<style> | ||
footer { | ||
text-align: center; | ||
padding: 2em 0; | ||
} | ||
|
||
.social-icons { | ||
display: flex; | ||
justify-content: center; | ||
margin-bottom: 1em; | ||
} | ||
|
||
.social-icons a { | ||
margin: 0 10px; | ||
color: #333; | ||
font-size: 1.5em; | ||
text-decoration: none; | ||
border-bottom: none; | ||
} | ||
|
||
.social-icons a:hover { | ||
color: #FF9800; | ||
} | ||
|
||
.social-icons a:after { | ||
content: none; | ||
} | ||
</style> | ||
|
||
<script src="https://kit.fontawesome.com/7d4b429529.js" crossorigin="anonymous"></script> |
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 |
---|---|---|
|
@@ -5,18 +5,22 @@ | |
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
|
||
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.title }}{% endif %}"> | ||
<meta name="description" | ||
content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.title }}{% endif %}"> | ||
|
||
<meta property="og:site_name" content="{{ site.title }}"> | ||
|
||
<link rel="icon" type="image/png" href="data:image/png;base64,iVBORw0KGgo="> | ||
|
||
<link rel="stylesheet" href="{{ site.baseurl }}/styles.css"> | ||
|
||
<link rel="stylesheet" as="style" crossorigin | ||
href="https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/static/pretendard.css" /> | ||
|
||
{% if page.excerpt %} | ||
<meta property="og:description" content="{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}"/> | ||
<meta property="og:description" content="{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}" /> | ||
{% else %} | ||
<meta property="og:description" content="{{ site.title | strip_html | strip_newlines | truncate: 160 }}"/> | ||
<meta property="og:description" content="{{ site.title | strip_html | strip_newlines | truncate: 160 }}" /> | ||
{% endif %} | ||
|
||
{% if page.title %} | ||
|
@@ -40,9 +44,9 @@ | |
|
||
<title> | ||
{% if page.id == "home" %} | ||
{{ site.title }} | ||
{{ site.title }} | ||
{% else %} | ||
{{ page.title }} — {{ site.title }} | ||
{{ page.title }} — {{ site.title }} | ||
{% endif %} | ||
</title> | ||
</head> | ||
</head> |
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,13 +1,15 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
{% include head.html %} | ||
<body> | ||
<nav>{% include nav.html %}</nav> | ||
<div class="wrapper"> | ||
<main>{{ content }}</main> | ||
<footer>{% include footer.html %}</footer> | ||
</div> | ||
{% include head.html %} | ||
|
||
{% include link-previews.html wrapperQuerySelector="content" %} | ||
</body> | ||
</html> | ||
<body> | ||
<nav>{% include nav.html %}</nav> | ||
<div class="wrapper" style="width: 100%; max-width: none; "> | ||
<main>{{ content }}</main> | ||
<footer>{% include footer.html %}</footer> | ||
</div> | ||
|
||
{% include link-previews.html wrapperQuerySelector="content" %} | ||
</body> | ||
|
||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
--- | ||
--- | ||
|
||
> 다양한 퍼블릭 클라우드 컴퓨팅 서비스를 제공하는 Amazon의 자회사 | ||
- AWS는 200개 이상의 클라우드 서비스를 제공 중 | ||
|
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,3 +1,6 @@ | ||
--- | ||
--- | ||
|
||
> [!note] Infrastructure as a Service | ||
> [[인프라]] 에 대한 [[클라우드 서비스]] 유형을 의미 | ||
|
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,3 +1,6 @@ | ||
--- | ||
--- | ||
|
||
> [!note] Platform as a Service | ||
> [[플랫폼]] 형태로 제공되는 [[클라우드 서비스]] 유형 | ||
|
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,3 +1,6 @@ | ||
--- | ||
--- | ||
|
||
>[!note] Software as a Service | ||
>소프트웨어 영역까지 [[클라우드 공급자]] 가 관리 및 제공하는 유형 | ||
|
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,3 +1,6 @@ | ||
--- | ||
--- | ||
|
||
> [!note] 가용 영역 | ||
> [[리전]] 내 구성되는 하나 이상의 개별 데이터 센터 | ||
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,3 +1,6 @@ | ||
--- | ||
--- | ||
|
||
> [!note] 리전 | ||
[[클라우드 서비스]] 를 위해 자원이 모여 있는 물리적 데이터 센터의 지리적 위치 | ||
|
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,3 +1,6 @@ | ||
--- | ||
--- | ||
|
||
> [!note] 온프레미스(on-premises) | ||
> 사용자 입장에서 공간, 자원 등 모든 것을 자체적으로 구축 및 운영하는 방식 | ||
|
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,3 +1,6 @@ | ||
--- | ||
--- | ||
|
||
[[클라우드 서비스]] 를 위한 자원의 소유권, 위치, 주체에 따라 퍼블릭 클라우드, 프라이빗 클라우드, 하이브리드 클라우드 구축 모델로 분류 | ||
|
||
### 퍼블릭 클라우드 | ||
|
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,3 +1,6 @@ | ||
--- | ||
--- | ||
|
||
> [!note] 클라우드 컴퓨팅 | ||
> 인터넷을 통해 IT 자원 요구에 따라 사용한 만큼 비용을 지불하는 서비스 | ||
|
Oops, something went wrong.