Skip to content

Commit 78aaafb

Browse files
committed
Update README.md
1 parent 25bc3e0 commit 78aaafb

File tree

1 file changed

+3
-176
lines changed

1 file changed

+3
-176
lines changed

README.md

+3-176
Original file line numberDiff line numberDiff line change
@@ -1,181 +1,8 @@
11
<p align = "center">
2-
<img src="http://i.imgur.com/JhbQ03z.png"/>
2+
<img src="https://vuejs.org/images/logo.png"/>
33
</p>
44
---
55

6-
If there's any issue you are facing in setting up this theme I'm there for you. Just create an issue in this repository (<http://github.com/hemangsk/Gravity>), (<https://help.github.com/articles/creating-an-issue/>) and I'll get back to you asap.
6+
## Vue.js 한국어 사용자 모임입니다.
77

8-
![alt-tag](http://i.imgur.com/HyyXWQ0.png)
9-
<img src="http://i.imgur.com/cPwoX3E.png"/>
10-
<img src="http://i.imgur.com/3TMoBGj.png"/>
11-
<img src="http://i.imgur.com/Z6h3uCp.png"/>
12-
<img src="http://i.imgur.com/bB7IIHr.png"/>
13-
14-
***
15-
16-
# INSTALLATION
17-
18-
### Dependencies
19-
20-
Gravity uses Jekyll and it's built-in SCSS compiler for the associated CSS, so the first thing you'll need is Jekyll itself:
21-
22-
```bash
23-
$ gem install jekyll
24-
```
25-
26-
In case you don't have the `bundler` gem installed already, you can install it as follows:
27-
28-
```bash
29-
$ gem install bundler
30-
```
31-
32-
For pagination, Gravity uses the [jekyll-paginate](https://jekyllrb.com/docs/pagination/) gem :
33-
34-
```bash
35-
$ gem install jekyll-paginate
36-
```
37-
38-
***
39-
40-
# Usage
41-
42-
Once you have the required gems, you can go ahead and clone the
43-
[Gravity repository](https://github.com/hemangsk/Gravity) or [download](https://github.com/hemangsk/Gravity/archive/master.zip)
44-
a zip of the master branch.
45-
46-
Run :
47-
48-
```bash
49-
$ jekyll serve
50-
```
51-
52-
Jekyll should now be generating your content!
53-
54-
***
55-
56-
# Adding posts
57-
58-
The theme by default ships with starter posts located in `_posts/`. Delete these posts and add your content to the `_posts`
59-
folder to see them being served up by Jekyll. [This](https://jekyllrb.com/docs/posts/) would be a good guide to getting started on writing posts using Jekyll. We've added a concise guide below:
60-
61-
- Create a .markdown file inside `_posts` folder.
62-
- Name the file according to the format YY-MM-DD-[short name for your post].
63-
- `2016-03-30-i-love-design.markdown`
64-
- Write the *Front Matter* and content in the file.
65-
66-
### FORMAT
67-
68-
```
69-
---
70-
layout: post | default | page
71-
title: String POST TITLE
72-
date: Time Stamp
73-
categories: String | Array of Strings CATEGORY / CATEGORIES
74-
---
75-
76-
---
77-
layout: post
78-
title: "The One with the Blackout"
79-
date: 2016-03-30 19:45:31 +0530
80-
categories: ["life", friends]
81-
---
82-
```
83-
84-
***
85-
86-
# CREATE PAGES
87-
88-
- Create a .md file in the root directory.
89-
- Name the file with the desired page link name.
90-
`about.md`
91-
`design.md`
92-
- Write the *Front Matter* and content in the file.
93-
94-
\###FORMAT
95-
96-
```
97-
---
98-
layout: page
99-
title: String TITLE OF THE WEBPAGE
100-
permalink: / String / PERMALINK FOR THE WEBPAGE
101-
tagline: String OPTIONAL GRAVITY FEATURE : TAGLINE FOR THE PAGE
102-
---
103-
104-
---
105-
layout: page
106-
title: "Science"
107-
permalink: /science/
108-
tagline: "Humanity is overrated."
109-
---
110-
```
111-
112-
***
113-
114-
\####Introducing
115-
116-
# ARCHIVE PAGES
117-
118-
#### You can display a list of all the posts corresponding to a particular category on a standalone page using the `ARCHIVE` layout.
119-
120-
- Create a .md file in the root directory.
121-
- Name the file. Preferred name will be the name of the category.
122-
\*`life.md`
123-
- Write the *Front Matter* and content in the file.
124-
125-
\###FORMAT
126-
127-
```
128-
---
129-
layout: archive ARCHIVE PAGE LAYOUT
130-
title: String TITLE OF THE WEBPAGE
131-
permalink: / String / PERMALINK FOR THE WEBPAGE
132-
tagline: String TAGLINE FOR THE PAGE
133-
category: String NAME OF THE CATEGORY OF WHICH THE PAGE WILL SHOW POSTS
134-
---
135-
136-
---
137-
layout: archive
138-
title: "Design"
139-
permalink: "Design"
140-
tagline: "It's all about perception"
141-
category: "design"
142-
---
143-
```
144-
145-
#### DIRECTORY STRUCTURE
146-
147-
```
148-
├── css # => Output of the combined SASS files
149-
│   └── style.scss
150-
├── _includes # => Contains partials that can be used with your layouts
151-
│   ├── footer.html
152-
│   ├── header.html
153-
│   ├── head.html
154-
│   ├── icon-github.html
155-
│   ├── icon-github.svg
156-
│   ├── icon-twitter.html
157-
│   └── icon-twitter.svg
158-
├── _layouts # => Layout related HTML files
159-
│   ├── archive.html
160-
│   ├── default.html
161-
│   ├── page.html
162-
│   └── post.html
163-
├── _posts # => posts, dynamic content. Follow the format: YEAR-MONTH-DAY-title.MARKUP
164-
│   ├── 2016-03-30-design-stories.markdown
165-
│   ├── 2016-03-30-science0.markdown
166-
│   ├── 2016-03-30-science.markdown
167-
│   └── 2016-03-30-welcome-to-jekyll.markdown
168-
└── _sass # => SASS partials for styling
169-
| ├── _base.scss
170-
| ├── _layout.scss
171-
| └── _syntax-highlighting.scss
172-
├── about.md
173-
├── _config.yml # => Configuration options or flags for your site go here
174-
├── design.md
175-
├── download.md
176-
├── feed.xml
177-
├── index.html
178-
├── LICENSE.txt # => Licensing information
179-
├── README.md
180-
└── science.md
181-
```
8+
vue.js 관련 한국어 자료를 모으고 있습니다.

0 commit comments

Comments
 (0)