{{ site.name }}
-- {{ site.description }} -
-diff --git a/.gitignore b/.gitignore
index 8312df086d..48d941d282 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
+.jekyll-cache
_site
.DS_Store
*.swp
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644
index 0000000000..b3ca0fc69b
--- /dev/null
+++ b/CONTRIBUTING.md
@@ -0,0 +1,99 @@
+# CONTRIBUTING
+
+## 블로그 포스트를 작성할 사람
+
+1. 사전 설정
+
+ 1. 이 repository를 본인의 계정으로 fork해주세요! 저장소 우측 상단에 fork 버튼이 있습니다.
+
+ 2. fork한 repository를 본인의 컴퓨터로 clone하세요
+
+ 3. (선택) 포스트 작성을 위한 별도의 브랜치를 생성하세요
+
+ ```bash
+ ex) git checkout -b post/leemir
+ ```
+
+2. 블로그 포스트 작성하기
+
+ 1. `_posts` 폴더에 포스트를 markdown형식으로 작성해주세요.
+ 2. 포스트 상단의 속성을 설정해주세요. (영어로 된 부분은 그대로 두고 한글 부분을 변경하시면 됩니다! 이해가 안가시면 다른 분들의 포스트를 참고해주세요.)
+ * `layout: post`
+ * `title: 포스트 제목`
+ * `authors: [작성자명]`
+ * `tags: [태그1, 태그2, 태그3]`
+ * `image: 포스트 커버 이미지`
+ * `featured: true`
+ 3. 포스트 작성 중, 이미지에 캡션 달기
+ 1. 다음과 같이 작성해주세요(띄어쓰기 주의)
+
+ ```markdown
+ ![image](../assets/images/xxxx/xxxx)
+ *캡션으로 달고 싶은 메시지*
+ ```
+
+ 4. VS Code 확장(`Ctrl`+`Shift`+`x`)에서 `markdownlint`를 설치해 규칙에 맞게 작성했는지 확인해주세요.
+
+3. 원격 저장소로 push
+
+ * 처음에 fork했던 본인의 원격 저장소로 push합니다. 별도의 설정을 안했다면 `origin`으로 되어있습니다.
+
+ ```bash
+ ex) git push origin [브랜치 이름]
+ ```
+
+4. PR을 작성해주세요!
+
+ * ***이 레포지토리의 master 브랜치로 Pull Request를 날려주세요!***
+ * (주의) 상위 레포지토리인 [wowthemesnet](https://github.com/wowthemesnet)/**mediumish-theme-jekyll** 로 날리시면 큰일납니다.
+ * PR이 블로그팀에 의해 merge되기 전까지는 브랜치를 따로 옮겨서 작업하지 않는 이상 `push`만 하면 알아서 현재 PR에 추가되니, 블로그팀이 수정 요청을 할 경우 수정 내용을 `commit` 후, `push`까지 해주시면 됩니다.
+
+5. 동기화해주세요!
+
+ * fork한 지 오래됐다면 PR을 날릴 때 conflict가 일어날 가능성이 높습니다. 항상 포스트를 작성하기 전에는 pull 받아주세요!
+
+ ```bash
+ ex) git pull upstream master
+
+ (만약, git remote -v를 입력했는데 upstream이 없다면 아래 명령어를 입력해주세요)
+
+ git remote add -t master upstream https://github.com/GDSC-University-of-Seoul/gdsc-university-of-seoul.github.io.git
+ ```
+
+
+
+## 블로그 포스팅 수식 사용하는 방법
+md파일 작성 시 use_math:true를 추가해주세요!
+
+[수식 참고 사이트](https://ko.wikipedia.org/wiki/%EC%9C%84%ED%82%A4%EB%B0%B1%EA%B3%BC:TeX_%EB%AC%B8%EB%B2%95#%EA%B5%AC%EB%B3%84_%EB%B6%80%ED%98%B8)
+
+```
+---
+layout: post
+title: 포스팅 제목
+authors: [github 아이디]
+tags:
+image:
+featured: true
+use_math: true
+---
+
+```
+
+## 블로그 author 추가하는 방법(블로그팀만)
+
+1. `_data` 폴더에 `author.yml`을 수정해주세요.
+ 1. author 속성은 다음과 같습니다.
+
+ ```markdown
+ [닉네임]:
+ name: [이름]
+ display_name: [표시되는 이름]
+ email: [본인 이메일]
+ github: [Github 닉네임]
+ role: [역할, lead || core || normal ]
+ member: [현재 활동 여부 boolean]
+ alumni: [alumni 여부 boolean]
+ blog_team: [블로그 팀 테두리 입히기]
+ web: [블로그 주소(선택)]
+ ```
diff --git a/Component Design Pattern.PNG b/Component Design Pattern.PNG
new file mode 100644
index 0000000000..9a41b4a2c7
Binary files /dev/null and b/Component Design Pattern.PNG differ
diff --git a/Gemfile b/Gemfile
deleted file mode 100644
index b8073827f0..0000000000
--- a/Gemfile
+++ /dev/null
@@ -1,20 +0,0 @@
-source "https://rubygems.org"
-
-# Hello! This is where you manage which Jekyll version is used to run.
-# When you want to use a different version, change it below, save the
-# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
-#
-# bundle exec jekyll serve
-#
-
-# If you have any plugins, put them here!
-gem 'wdm', '>= 0.1.0' if Gem.win_platform?
-group :jekyll_plugins do
- gem 'jekyll-feed'
- gem 'jekyll-sitemap'
- gem 'jekyll-paginate'
- gem 'jekyll-seo-tag'
- gem 'jekyll-archives'
- gem 'kramdown'
- gem 'rouge'
-end
diff --git a/Gemfile.lock b/Gemfile.lock
deleted file mode 100644
index 52ff7c4619..0000000000
--- a/Gemfile.lock
+++ /dev/null
@@ -1,81 +0,0 @@
-GEM
- remote: https://rubygems.org/
- specs:
- addressable (2.6.0)
- public_suffix (>= 2.0.2, < 4.0)
- colorator (1.1.0)
- concurrent-ruby (1.1.4)
- em-websocket (0.5.1)
- eventmachine (>= 0.12.9)
- http_parser.rb (~> 0.6.0)
- eventmachine (1.2.7)
- eventmachine (1.2.7-x64-mingw32)
- ffi (1.10.0)
- ffi (1.10.0-x64-mingw32)
- forwardable-extended (2.6.0)
- http_parser.rb (0.6.0)
- i18n (0.9.5)
- concurrent-ruby (~> 1.0)
- jekyll (3.8.5)
- addressable (~> 2.4)
- colorator (~> 1.0)
- em-websocket (~> 0.5)
- i18n (~> 0.7)
- jekyll-sass-converter (~> 1.0)
- jekyll-watch (~> 2.0)
- kramdown (~> 1.14)
- liquid (~> 4.0)
- mercenary (~> 0.3.3)
- pathutil (~> 0.9)
- rouge (>= 1.7, < 4)
- safe_yaml (~> 1.0)
- jekyll-archives (2.1.1)
- jekyll (>= 2.4)
- jekyll-feed (0.11.0)
- jekyll (~> 3.3)
- jekyll-paginate (1.1.0)
- jekyll-sass-converter (1.5.2)
- sass (~> 3.4)
- jekyll-seo-tag (2.5.0)
- jekyll (~> 3.3)
- jekyll-sitemap (1.2.0)
- jekyll (~> 3.3)
- jekyll-watch (2.1.2)
- listen (~> 3.0)
- kramdown (1.17.0)
- liquid (4.0.1)
- listen (3.1.5)
- rb-fsevent (~> 0.9, >= 0.9.4)
- rb-inotify (~> 0.9, >= 0.9.7)
- ruby_dep (~> 1.2)
- mercenary (0.3.6)
- pathutil (0.16.2)
- forwardable-extended (~> 2.6)
- public_suffix (3.0.3)
- rb-fsevent (0.10.3)
- rb-inotify (0.10.0)
- ffi (~> 1.0)
- rouge (3.3.0)
- ruby_dep (1.5.0)
- safe_yaml (1.0.5)
- sass (3.7.3)
- sass-listen (~> 4.0.0)
- sass-listen (4.0.0)
- rb-fsevent (~> 0.9, >= 0.9.4)
- rb-inotify (~> 0.9, >= 0.9.7)
-
-PLATFORMS
- ruby
- x64-mingw32
-
-DEPENDENCIES
- jekyll-archives
- jekyll-feed
- jekyll-paginate
- jekyll-seo-tag
- jekyll-sitemap
- kramdown
- rouge
-
-BUNDLED WITH
- 2.0.1
diff --git a/LICENSE.txt b/LICENSE.txt
deleted file mode 100644
index 61f4e6478d..0000000000
--- a/LICENSE.txt
+++ /dev/null
@@ -1,8 +0,0 @@
-Copyright (c) 2019 WowThemes.net
-License: MIT
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/README.md b/README.md
index a1ff70173f..c570f4d7dd 100644
--- a/README.md
+++ b/README.md
@@ -1,23 +1,46 @@
-# Mediumish - Jekyll Theme
+# GDSC UOS TEAM BLOG
-[Live Demo](https://wowthemesnet.github.io/mediumish-theme-jekyll/) | [Download](https://github.com/wowthemesnet/mediumish-theme-jekyll/archive/master.zip) | [Documentation](https://bootstrapstarter.com/bootstrap-templates/template-mediumish-bootstrap-jekyll/) | [Buy me a coffee](https://www.wowthemes.net/donate/)
+GDSC UOS에서 자체 운영하는 팀 블로그입니다!
-![mediumish](assets/images/mediumish-jekyll-template.png)
+:point_right: [Link](https://gdsc-university-of-seoul.github.io/)
+
-### Copyright
+포스팅 PR을 하러 오셨다면 `CONTRIBUTING.md`를 참고해주세요!
-Copyright (C) 2019 Sal, https://www.wowthemes.net
+:point_right: [Link](https://github.com/GDSC-University-of-Seoul/gdsc-university-of-seoul.github.io/blob/master/CONTRIBUTING.md)
-**Mediumish for Jekyll** is designed and developed by [Sal](https://www.wowthemes.net) and it is *free* under MIT license.
+## Stacks
-
+
- {{ site.description }} -
-- + {% if page.last_modified_at %} (Updated: ) {% endif %}
- -This website is built with Jekyll and Mediumish template for Jekyll. It's for demonstration purposes, no real content can be found. Mediumish template for Jekyll is compatible with Github pages, in fact even this demo is created with Github Pages and hosted with Github.
+GDSC([Google Developer Student Club](https://developers.google.com/community/dsc))는 Google의 지원으로 운영되는 대학생 개발자 커뮤니티로 학생들에게 유익한 영향을 미치고 역량을 강화하여 기술을 통해 공동체에 가치있는 영향을 미치고자 하는 목표를 바탕으로 진행되고 있습니다. - -Please, read the docs here.
+#### GDSC University of Seoul -Head over to our Github repository!
- -Thank you for your support! Your donation helps me to maintain and improve Mediumish .
- -Buy me a coffee Documentation - -{count} times
+ +{count} times
+ +To do List
+