Making steady content and conveying it well takes a great deal of research and, hence, time and exertion. Building a profound established comprehension of your target customer needs is critical as your principle objective ought to be to fulfill their requirements as awesome content. You should need to enhance their lives. Having significant content like this may not be simple by any methods. Be that as it may, in any case, it’s a fundamental apparatus in the event that you expect to grow a fruitful and supportable business in the present web focused world.
+
+
Receiving the benefits of content is a certain something. Be that as it may, it’s so substantially less demanding once you begin conveying all the more successfully. The profitable content thought isn’t just about bragging your item’s capacities and general worth or your organization’s achievements. You should concentrate less on advertising how awesome your item is and rather concentrate on indicating how valuable it is. This is a client focused approach as it concentrates on their issues and your answer for them. Making yourself fundamental is critical.
+
+
Content is Imortant
+
+
+ In saying that, a one-measure fits-all approach won't do the trick with regards to content promoting. Rather, an emphasis on making remarkable, high caliber and totally genuine content that is engaging, helpful and fascinating for customers will get you the crown. From content, video and symbolism to infographics, studies, online courses and podcasts, whatever your favored content medium is, guarantee it is shareable and pertinent to your industry.
+
+
+
+
+
+
On social media, we may share our own thoughts and advance our image notwithstanding spreading musings for different associations and affiliations. With such a critical number of associations with people and relationship on social media, our experience can be over-burden with a considerable measure of information.
+:ET
\ No newline at end of file
diff --git a/.jekyll-cache/Jekyll/Cache/Jekyll--Converters--Markdown/5d/673ffc6fe83ca84cb9d694b4433084e7579ca1e3a88ef17ba71d1b70002a49 b/.jekyll-cache/Jekyll/Cache/Jekyll--Converters--Markdown/5d/673ffc6fe83ca84cb9d694b4433084e7579ca1e3a88ef17ba71d1b70002a49
new file mode 100644
index 000000000..f39634fd9
--- /dev/null
+++ b/.jekyll-cache/Jekyll/Cache/Jekyll--Converters--Markdown/5d/673ffc6fe83ca84cb9d694b4433084e7579ca1e3a88ef17ba71d1b70002a49
@@ -0,0 +1,2 @@
+I":
Vue.js 시작하기
+:ET
\ No newline at end of file
diff --git a/.jekyll-cache/Jekyll/Cache/Jekyll--Converters--Markdown/65/ab8584dbd05b32f489942bc6d9d99cd3727a113f8688e1357851c829aba1fb b/.jekyll-cache/Jekyll/Cache/Jekyll--Converters--Markdown/65/ab8584dbd05b32f489942bc6d9d99cd3727a113f8688e1357851c829aba1fb
new file mode 100644
index 000000000..8003564da
--- /dev/null
+++ b/.jekyll-cache/Jekyll/Cache/Jekyll--Converters--Markdown/65/ab8584dbd05b32f489942bc6d9d99cd3727a113f8688e1357851c829aba1fb
@@ -0,0 +1,94 @@
+I"W
Vue.js 시작하기
+
+
1. Vue.js란?
+
+
2. 개발환경 설정
+
+
3. Vue.js 애플리케이션 예제
+
+
+
+
1. Vue.js란?
+
+
Vue.js의 특징
+
+
+
+
유연하고 가볍다.
+
+
(전체 아키텍처 새로 구성 X, 일부 UI화면만 적용)
+
+
+
React와 마찬가지로 가상 DOM을 지원하고 있다. (빠른 렌더링 속도 지원)
+
+
+
MVVM 패턴을 따르고 있다.
+
+
+
+
+
+
+
+
2. 개발환경 설정
+
+
+
Node.js 설치 : npm install -g npm
+
Visual Studio Code 설치
+
Vue.js devtools 설치
+
Vue-CLI 설치 : npm install -g yarn @vue/cli
+
새 프로젝트 생성 : vue create [프로젝트 폴더명] / ‘Vue 프로젝트 매니저’ 이용
MVVM 구조는 생소했으나, 익숙해져서 실제 프로젝트에도 적용하게 되면 구조 수정도 용이해질 것이다.
+팀 프로젝트에는 MVC 구조를 사용했는데, Eclipse에서 수많은 패키지와 클래스를 수정하느라 번거로웠다.
+아직은 예제 작성밖에 못하고, 개념도 확실히 이해하지 못했지만, MVVM 구조에 익숙해지면 코드 수정에 할애하는 시간이 훨씬 단축될 것이다.
+
+:ET
\ No newline at end of file
diff --git a/.jekyll-cache/Jekyll/Cache/Jekyll--Converters--Markdown/93/520ad84cce18a525579938bbc176be465707017834fd3a735834d8b441c22d b/.jekyll-cache/Jekyll/Cache/Jekyll--Converters--Markdown/93/520ad84cce18a525579938bbc176be465707017834fd3a735834d8b441c22d
new file mode 100644
index 000000000..6682906ef
--- /dev/null
+++ b/.jekyll-cache/Jekyll/Cache/Jekyll--Converters--Markdown/93/520ad84cce18a525579938bbc176be465707017834fd3a735834d8b441c22d
@@ -0,0 +1,217 @@
+I"�o
v-text : innerText 속성에 연결됨. 태그 문자열을 HTML 인코딩하여 나타내기 때문에 화면에는 태그 문자열이 그대로 나타남.
+
v-html : innterHTML 속성에 연결됨. 태그 문자열을 파싱하여 화면에 나타냄.
+// v-html 디렉티브는 XSS(Cross Site Scripting) 공격에 취약. 꼭 필요한 경우가 아니라면 v-text를 사용하는 것이 안전.
+
v-bind : 요소 객체들의 속성들을 바인딩하기 위해 사용.
+// v-bind 생략가능. ex) v-bind:src → :src
+
+
+
양방향 디렉티브
+
+
v-model : 요소에서 변경한 값이 모델 객체에 반영.
+
+
lazy : 입력폼에서 이벤트가 발생할 때 입력한 값을 데이터와 동기화.
+
number : 숫자가 입력될 경우 number 타입으로 자동 형변환.
+
trim : 문자열 앞뒤 공백 자동 제거.
+
+
+
+
+
v-show, v-if, v-else, v-else-if 디렉티브
+
// v-show와 v-if의 차이 : 실제 렌더링 여부
+
+
v-show : HTML요소를 렌더링 후 display 스타일 속성으로 화면에 보여줄지 여부를 결정.
+
v-if : 조건에 부합되지 않으면 렌더링 X.
+
v-else-if : 자바스크립트, C언어, 자바에서 사용하는 if ~ else if ~ else 구문와 동일한 기능.
+
+
+
+
+
3. 반복 렌더링 디렉티브
+
+
v-for : 자바스크립트 언어의 for문과 유사.
+ // 원본데이터 형식에 따라 사용 방법이 달라짐.
+
+
배열 or 유사 배열 : v-for=”[배열 데이터] in [배열 이름]”
+
객체(해시맵 구조) : v-for=”(val , key) in [배열 이름]
+
+
+
// v-for로 렌더링한 배열 데이터의 순서가 변경되면 기존 DOM 요소의 데이터를 변경.
+ // DOM 요소를 추척하여 DOM 요소의 위치를 직접 변경 → DOM 요소에 key 특성(Attribute) 부여.
+ // v-bind 디렉티브를 이용해 key 특성에 고유한 값 부여.
+ // DB를 조회하여 얻어낸 결과를 렌더링 → key 특성에 기본기(Primary key)값 바인딩.
+
+
+
+
<template> 태그
+
// 여러 요소의 그룹을 반복 렌더링
+
+
<template>태그는 렌더링 내용에 포함 X.
+
단지 요소들을 그룹으로 묶어주기 위한 용도로 사용.
+
+
+
+
+
4. 기타 디렉티브
+
+
v-pre : 템플릿 문자열을 컴파일하지 않고 그대로 내보냄.
+
v-once : HTML 요소를 단 한 번만 렌더링.
+
v-clock : 화면 초기에 컴파일 되지 않은 템플릿은 나타나지 않도록 할 수 있음.
+// 콧수염 표현식이 화면에 일시적으로 나타나는 경우에 사용. (복잡한 UI일수록 빈번.)
+
+
+
+
+
5. 계산형 속성
+
// 연산 로직이 필요한 경우
+
+
computed 속성과 함께 함수를 등록해두면 속성처럼 이용 가능.
+
함수 내부 this는 Vue 객체 자신을 참조.
+
함수 내부에서 다른 콜백 함수 실행 → this가 다른 값으로 연결.
+
number 타입을 사용하려면 Number() 함수나 ParseInt() 함수를 이용해 명시적으로 숫자 값으로 변환.
+
+
+:ET
\ No newline at end of file
diff --git a/.jekyll-cache/Jekyll/Cache/Jekyll--Converters--Markdown/c9/22f45a309c2195793b566aad0c3738320b00dbe41f2f12304b2bdfd1629431 b/.jekyll-cache/Jekyll/Cache/Jekyll--Converters--Markdown/c9/22f45a309c2195793b566aad0c3738320b00dbe41f2f12304b2bdfd1629431
new file mode 100644
index 000000000..7254d6dab
--- /dev/null
+++ b/.jekyll-cache/Jekyll/Cache/Jekyll--Converters--Markdown/c9/22f45a309c2195793b566aad0c3738320b00dbe41f2f12304b2bdfd1629431
@@ -0,0 +1,2 @@
+I",
Vue.js기초
+:ET
\ No newline at end of file
diff --git a/.jekyll-cache/Jekyll/Cache/Jekyll--Converters--Markdown/e3/b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 b/.jekyll-cache/Jekyll/Cache/Jekyll--Converters--Markdown/e3/b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
new file mode 100644
index 000000000..80ef94bd9
--- /dev/null
+++ b/.jekyll-cache/Jekyll/Cache/Jekyll--Converters--Markdown/e3/b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
@@ -0,0 +1,2 @@
+I"
+:ET
\ No newline at end of file
diff --git a/.jekyll-cache/Jekyll/Cache/Jekyll--Converters--Markdown/e8/3bef819d5e496321d46f9cefcb0ba614a2df591bd240b4a12386c3bd236ee9 b/.jekyll-cache/Jekyll/Cache/Jekyll--Converters--Markdown/e8/3bef819d5e496321d46f9cefcb0ba614a2df591bd240b4a12386c3bd236ee9
new file mode 100644
index 000000000..b15228442
--- /dev/null
+++ b/.jekyll-cache/Jekyll/Cache/Jekyll--Converters--Markdown/e8/3bef819d5e496321d46f9cefcb0ba614a2df591bd240b4a12386c3bd236ee9
@@ -0,0 +1,5 @@
+I"�
Thank you for your correspondence
+
We are delighted to hear from you. You may expect to receive an answer soon.
Blogs are really pretty awesome things. For one, they are a means to continually provide fresh,
- dynamic content to your users. Also, they help your site get indexed and build authority as they are essential for SEO!
-
-
-
- Content fulfills the general population seeing your website and it likewise fulfills web indexes! Having solid content
- influences your advertising to work a hell of a great deal simpler. Along these lines, the greatest bit of the promoting riddle is there. It's vital to thoroughly consider this technique before starting another crusade. This makes the whole content and advertising process more streamlined and will in the end enable your message to achieve your clients in a more effective manner. You ought not think little of the significance of giving yourself room. Having squirm room takes into consideration steady changes to your methodology en route.
-
-
- At that point, rather than pushing something superfluous to your users, you can give them something that will stick.
- You'll give them something they can identify with and be slanted to share with their companions and associates. Perhaps they'll even be slanted to work with you later on!
- Having an advancement technique that is excessively unbending isn't astute on the grounds that there is no space for solid spontaneous creation. Having the capacity to change your advertising procedure will prompt more deals and arrangements.
-
-
-
{% for post in site.posts %}
diff --git a/_layouts/category.html b/_layouts/category.html
new file mode 100644
index 000000000..918e99ed9
--- /dev/null
+++ b/_layouts/category.html
@@ -0,0 +1,158 @@
+
+
+
+
+
+
+
+GAEUN SHIN -Category- githut.io
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/_layouts/post.html b/_layouts/post.html
index 30f9003d1..b5c172b30 100755
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -6,6 +6,7 @@
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
+
{% include head.html %}
@@ -23,9 +24,11 @@
+
+
@@ -38,7 +41,7 @@
{{page.title}}
{{content}}
-
+
+
-->
+
diff --git a/_posts/2017-10-31-welcome-to-massively-the-jekyll-theme.md b/_posts/2017-10-31-welcome-to-massively-the-jekyll-theme.md
deleted file mode 100644
index dabd4dc87..000000000
--- a/_posts/2017-10-31-welcome-to-massively-the-jekyll-theme.md
+++ /dev/null
@@ -1,28 +0,0 @@
----
-layout: post
-title: "Welcome to Massively: The Jekyll Theme!"
-date: 2017-10-31
-excerpt: "Huge thanks to HTML5 UP for making this awesome template! Let's see what it can do"
-image: "/images/pic02.jpg"
----
-
-## How to Use This Theme
-Just go ahead and read up on [how to install Jekyll](https://jekyllrb.com/). It's not too hard I promise!
-
-Download this repository [here](https://github.com/iwiedenm/jekyll-theme-massively) and save it to any folder you want.
-
-Open a terminal window or a command line and ```cd``` to that location.
-
-Then enter: ```bundle exec jekyll serve```. You can now access your new Jekyll site from [http://127.0.0.1:4000/](http://127.0.0.1:4000/). Have fun exploring your new site!
-
-## Features
-### Auto-Generating Sitemap
-The sitemap is auto generated! Just simply change the front matter of each site. It looks like so...
-```
-sitemap:
- priority: 0.7
- lastmod: 2017-11-02
- changefreq: weekly
-```
-### Formspring integration
-The contact form below each page on the footer actually collects information! Just change your email address in the ```_config.yml``` file!
diff --git a/_posts/2021-04-05-Vue.js-01.markdown b/_posts/2021-04-05-Vue.js-01.markdown
new file mode 100644
index 000000000..c62125d12
--- /dev/null
+++ b/_posts/2021-04-05-Vue.js-01.markdown
@@ -0,0 +1,96 @@
+---
+layout: post
+title: Vue.js 1.시작하기
+date: 2021-04-05 13:35:20 +0200
+tags:
+categories: Vue.js
+---
+
+##### Vue.js 시작하기
+
+##### 1. Vue.js란?
+
+##### 2. 개발환경 설정
+
+##### 3. Vue.js 애플리케이션 예제
+
+---
+
+#### 1. Vue.js란?
+
+##### Vue.js의 특징
+
+- 유연하고 가볍다.
+
+ (전체 아키텍처 새로 구성 X, 일부 UI화면만 적용)
+
+- React와 마찬가지로 가상 DOM을 지원하고 있다. (빠른 렌더링 속도 지원)
+
+- MVVM 패턴을 따르고 있다.
+
+{: width="700"}
+
+---
+
+#### 2. 개발환경 설정
+
+1. Node.js 설치 : npm install -g npm
+2. Visual Studio Code 설치
+3. Vue.js devtools 설치
+4. Vue-CLI 설치 : npm install -g yarn @vue/cli
+5. 새 프로젝트 생성 : vue create [프로젝트 폴더명] / ‘Vue 프로젝트 매니저’ 이용
+
+---
+
+#### 3. Vue.js 애플리케이션 예제
+
+~~~javascript
+
+
+
+
+
+ hello vue.js
+
+
+
+
+
{{message}}
+
+
+
+
+
+~~~
+
+---
+
+##### 실행결과
+
+{: width="880"}
+
+---
+
+{: width="880"}
+
+{% highlight markdown %}
+
+# Console에서 변수의 값을 직접 변경.
+
+{% endhighlight %}
+
+---
+
+> MVVM 구조는 생소했으나, 익숙해져서 실제 프로젝트에도 적용하게 되면 구조 수정도 용이해질 것이다.
+팀 프로젝트에는 MVC 구조를 사용했는데, Eclipse에서 수많은 패키지와 클래스를 수정하느라 번거로웠다.
+아직은 예제 작성밖에 못하고, 개념도 확실히 이해하지 못했지만, MVVM 구조에 익숙해지면 코드 수정에 할애하는 시간이 훨씬 단축될 것이다.
diff --git a/_posts/2021-04-06-Vue.js-02.markdown b/_posts/2021-04-06-Vue.js-02.markdown
new file mode 100644
index 000000000..833dc16bd
--- /dev/null
+++ b/_posts/2021-04-06-Vue.js-02.markdown
@@ -0,0 +1,214 @@
+---
+layout: post
+title: Vue.js 2.Vue.js기초
+date: 2021-04-06 13:35:20 +0200
+tags:
+categories: Vue.js
+---
+
+##### Vue.js기초
+
+##### 1. hellovuejs 예제 분석
+
+##### 2. 기본 디렉티브
+
+##### 3. 반복 렌더링 디렉티브
+
+##### 4. 기타 디렉티브
+
+##### 5. 계산형 속성
+
+##### 6. 계산형 속성 예제
+
+---
+
+#### 1. hellovuejs 예제 분석
+
+##### hellovuejs 예제
+
+```javascript
+
+
+
+
+
+ 02-01
+
+
+
+
{{message}}
+
+
+
+
+
+
+```
+
+---
+
+#### 2. 기본 디렉티브
+##### 단방향 디렉티브
+###### // HTML 요소에서 값을 변경하더라도 모델 객체의 값이 바뀌지 않는다.
+
+- v-text : innerText 속성에 연결됨. 태그 문자열을 HTML 인코딩하여 나타내기 때문에 화면에는 태그 문자열이 그대로 나타남.
+- v-html : innterHTML 속성에 연결됨. 태그 문자열을 파싱하여 화면에 나타냄.
+// v-html 디렉티브는 XSS(Cross Site Scripting) 공격에 취약. 꼭 필요한 경우가 아니라면 v-text를 사용하는 것이 안전.
+- v-bind : 요소 객체들의 속성들을 바인딩하기 위해 사용.
+// v-bind 생략가능. ex) v-bind:src → :src
+
+
+
+##### 양방향 디렉티브
+- v-model : 요소에서 변경한 값이 모델 객체에 반영.
+ + lazy : 입력폼에서 이벤트가 발생할 때 입력한 값을 데이터와 동기화.
+ + number : 숫자가 입력될 경우 number 타입으로 자동 형변환.
+ + trim : 문자열 앞뒤 공백 자동 제거.
+
+
+
+##### v-show, v-if, v-else, v-else-if 디렉티브
+// v-show와 v-if의 차이 : 실제 렌더링 여부
+- v-show : HTML요소를 렌더링 후 display 스타일 속성으로 화면에 보여줄지 여부를 결정.
+- v-if : 조건에 부합되지 않으면 렌더링 X.
+- v-else-if : 자바스크립트, C언어, 자바에서 사용하는 if ~ else if ~ else 구문와 동일한 기능.
+
+---
+
+#### 3. 반복 렌더링 디렉티브
+- v-for : 자바스크립트 언어의 for문과 유사.
+ // 원본데이터 형식에 따라 사용 방법이 달라짐.
+ - 배열 or 유사 배열 : v-for="[배열 데이터] in [배열 이름]"
+ - 객체(해시맵 구조) : v-for="(val , key) in [배열 이름]
+
+ // v-for로 렌더링한 배열 데이터의 순서가 변경되면 기존 DOM 요소의 데이터를 변경.
+ // DOM 요소를 추척하여 DOM 요소의 위치를 직접 변경 → DOM 요소에 key 특성(Attribute) 부여.
+ // v-bind 디렉티브를 이용해 key 특성에 고유한 값 부여.
+ // DB를 조회하여 얻어낸 결과를 렌더링 → key 특성에 기본기(Primary key)값 바인딩.
+
+
+##### \ 태그
+// 여러 요소의 그룹을 반복 렌더링
+- \태그는 렌더링 내용에 포함 X.
+- 단지 요소들을 그룹으로 묶어주기 위한 용도로 사용.
+
+---
+
+#### 4. 기타 디렉티브
+- v-pre : 템플릿 문자열을 컴파일하지 않고 그대로 내보냄.
+- v-once : HTML 요소를 단 한 번만 렌더링.
+- v-clock : 화면 초기에 컴파일 되지 않은 템플릿은 나타나지 않도록 할 수 있음.
+// 콧수염 표현식이 화면에 일시적으로 나타나는 경우에 사용. (복잡한 UI일수록 빈번.)
+
+---
+
+#### 5. 계산형 속성
+###### // 연산 로직이 필요한 경우
+- computed 속성과 함께 함수를 등록해두면 속성처럼 이용 가능.
+- 함수 내부 this는 Vue 객체 자신을 참조.
+- 함수 내부에서 다른 콜백 함수 실행 → this가 다른 값으로 연결.
+- number 타입을 사용하려면 Number() 함수나 ParseInt() 함수를 이용해 명시적으로 숫자 값으로 변환.
+
+---
+
+#### 6. 계산형 속성 예제
+~~~ javascript
+
+
+
+
+02-17
+
+
+
+
+
+
+ 국가명 :
+
+
+
+
+
번호
국가명
수도
지역
+
+
+
+
+
{{c.no}}
+
{{c.name}}
+
{{c.capital}}
+
{{c.region}}
+
+
+
+
+
+
+
+~~~
+
+{% highlight markdown %}
+
+{% endhighlight %}
+---
diff --git a/_sass/base/_typography.scss b/_sass/base/_typography.scss
index 6241fd541..d9efca764 100644
--- a/_sass/base/_typography.scss
+++ b/_sass/base/_typography.scss
@@ -5,6 +5,11 @@
///
/* Type */
+@font-face {
+ font-family: "THEvanillabeanR";
+ src: url("../fonts/THEvanillabeanR.otf") format("otf");
+ font-style: normal;
+}
html {
font-size: 16pt;
@@ -57,11 +62,13 @@
}
p {
+ font-family: "THEvanillabeanR";
text-align: justify;
margin: 0 0 _size(element-margin) 0;
}
h1, h2, h3, h4, h5, h6 {
+ font-style: "THEvanillabeanR";
font-family: _font(family-heading);
font-weight: _font(weight-heading);
line-height: 1.5;
@@ -195,6 +202,9 @@
h1, h2, h3, h4, h5, h6 {
color: _palette($p, fg-bold);
}
+ ul,li{
+ font-family: "THEvanillabeanR";
+ }
blockquote {
border-left-color: _palette($p, border);
@@ -210,4 +220,4 @@
}
}
- @include color-typography;
\ No newline at end of file
+ @include color-typography;
diff --git a/about.md b/about.md
index 3358140b8..a890ae149 100644
--- a/about.md
+++ b/about.md
@@ -1,6 +1,6 @@
---
layout: page
-title: Jekyll Theme - About - Massively
+title: GAEUN SHIN -Project- githut.io
description: When building a website it's helpful to see what the focus of your site is. This page is an example of how to show a website's focus.
sitemap:
priority: 0.7
diff --git a/assets/icon/apple-touch-icon.jpg b/assets/icon/apple-touch-icon.jpg
new file mode 100644
index 000000000..f1f2e2c69
Binary files /dev/null and b/assets/icon/apple-touch-icon.jpg differ
diff --git a/assets/icon/apple-touch-icon.png b/assets/icon/apple-touch-icon.png
deleted file mode 100644
index ba4f2ffa9..000000000
Binary files a/assets/icon/apple-touch-icon.png and /dev/null differ
diff --git a/assets/icon/favicon.ico b/assets/icon/favicon.ico
index c1fc45398..ea41692a7 100644
Binary files a/assets/icon/favicon.ico and b/assets/icon/favicon.ico differ
diff --git a/blog.md b/blog.md
deleted file mode 100644
index b6efdbe4d..000000000
--- a/blog.md
+++ /dev/null
@@ -1,9 +0,0 @@
----
-layout: blog
-title: Jekyll Theme - Blog Page - Massively
-description: Every great website starts with a great homepage. The homepage tells your viewers what your site is all about and gives your viewers a place to come back to.
-sitemap:
- priority: 1.0
- lastmod: 2017-11-02
- changefreq: weekly
----
diff --git a/category.html b/category.html
new file mode 100644
index 000000000..7057d91c0
--- /dev/null
+++ b/category.html
@@ -0,0 +1,164 @@
+
+
+
+
+
+
+
+GAEUN SHIN -Category- githut.io
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/elements.html b/elements.html
index 9b5f05f67..0dd84efb9 100644
--- a/elements.html
+++ b/elements.html
@@ -1,6 +1,6 @@
---
layout: page
-title: Jekyll Theme - Elements Reference - Massively
+title: GAEUN SHIN githut.io
description: Having a massive list of every element of a theme is useful for quick referencing and ideas. Here is every component of Massively!
sitemap:
priority: 0.7
diff --git a/fonts/THEvanillabeanB.otf b/fonts/THEvanillabeanB.otf
new file mode 100644
index 000000000..addfe014e
Binary files /dev/null and b/fonts/THEvanillabeanB.otf differ
diff --git a/fonts/THEvanillabeanM.otf b/fonts/THEvanillabeanM.otf
new file mode 100644
index 000000000..052844624
Binary files /dev/null and b/fonts/THEvanillabeanM.otf differ
diff --git a/fonts/THEvanillabeanR.otf b/fonts/THEvanillabeanR.otf
new file mode 100644
index 000000000..0aba12a51
Binary files /dev/null and b/fonts/THEvanillabeanR.otf differ
diff --git a/images/1.jpg b/images/1.jpg
new file mode 100644
index 000000000..f1f2e2c69
Binary files /dev/null and b/images/1.jpg differ
diff --git a/images/MVVM.png b/images/MVVM.png
new file mode 100644
index 000000000..a5d5a5c30
Binary files /dev/null and b/images/MVVM.png differ
diff --git a/images/ch01-2.PNG b/images/ch01-2.PNG
new file mode 100644
index 000000000..4297bd5a9
Binary files /dev/null and b/images/ch01-2.PNG differ
diff --git a/images/ch01.PNG b/images/ch01.PNG
new file mode 100644
index 000000000..a93a37e66
Binary files /dev/null and b/images/ch01.PNG differ
diff --git a/images/quote.png b/images/quote.png
new file mode 100644
index 000000000..ee9b16bff
Binary files /dev/null and b/images/quote.png differ
diff --git a/images/quote2.png b/images/quote2.png
new file mode 100644
index 000000000..9af5be189
Binary files /dev/null and b/images/quote2.png differ
diff --git a/images/reactlogo.png b/images/reactlogo.png
new file mode 100644
index 000000000..7fc251ece
Binary files /dev/null and b/images/reactlogo.png differ
diff --git a/images/vuelogo.png b/images/vuelogo.png
new file mode 100644
index 000000000..92e398d41
Binary files /dev/null and b/images/vuelogo.png differ
diff --git a/index.html b/index.html
index 1db94ffe5..1a4e20d87 100755
--- a/index.html
+++ b/index.html
@@ -1,12 +1,5 @@
----
-layout: null
-title: Jekyll Theme - Home Page - Massively
-description: Every great website starts with a great homepage. The homepage tells your viewers what your site is all about and gives your viewers a place to come back to.
-sitemap:
- priority: 1.0
- lastmod: 2017-11-02
- changefreq: weekly
----
+--- layout: null title: GAEUN SHIN -Who's GAEUN- githut.io description: Every great website starts with a great homepage. The homepage tells your viewers what your site is all about and gives your viewers a place to come back to. sitemap: priority: 1.0
+lastmod: 2017-11-02 changefreq: weekly ---
-
+
+
{% include head.html %}
-
-
+
+
+
-
-
With only a few edits, you can have a stunningly beautiful website
- nearly out of the box. Of course... you can always take it further
- and make it something even more amazing!
-
-
-
Regardless of your website's function, the homepage is what brings the user in.
- If it's anything short of intriguing, captivating, or just plain cool, you're out of luck and you might deter some visitors.
-
Your homepage must clearly describe what your site is about.
- Having engaging content will in this manner enable you to offer and it will make your customers more inclined to purchase from you. Content is a way to position your organization in the correct place for your clients to discover you.
-
-
- In this manner, content in itself is a standout amongst the best promoting apparatuses in your whole advertising toolbox! Rather than making your content around your promoting technique, it's limitlessly more productive to fabricate your showcasing around your content.
-