You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -67,6 +75,8 @@ To start using the theme you need to follow these steps.
67
75
68
76
Assuming that you started your first website based on `minima` theme from [here](https://jekyllrb.com/docs/)
69
77
78
+
Add a `favicon.ico` to the root directory for favicon.
79
+
70
80
1. Create `blog.md` in the root folder ans set its yaml parameters to
71
81
72
82
```yaml
@@ -88,42 +98,52 @@ permalink: /about/
88
98
home_text : [Your Text]
89
99
```
90
100
91
-
4. In the `_congif.yml` file add a key `resume_url` and set it to the path of the Resume. Also add `author_name` to your name to appear on the website.
92
-
93
-
Path is relative to the root directory
101
+
4. Create a new `categories.md` file in root with following yaml parameters
94
102
```yaml
95
-
resume_url: [PATH_TO_RESUME]
96
-
author_name: [YOUR_NAME]
103
+
layout: categories
97
104
```
98
105
106
+
4. In the `_congif.yml` file add following and change accordingly
99
107
100
-
5. In the `index.md` file add
101
-
108
+
Path is relative to the root directory
102
109
```yaml
103
-
home_text : [some-text]
110
+
resume_url: [PATH_TO_RESUME]
111
+
author_name: [YOUR_NAME]
112
+
description: [SITE_DESCRIPTION]
113
+
url: [WEBSITE_URL]
114
+
google_analytics: '[google analytics Id]'
115
+
disqus:
116
+
shortname: [discus-shotname]
104
117
```
105
118
106
-
Replace "some-text" with your text
107
-
108
-
6. Using Google Analytics add
119
+
### Minifier
109
120
110
-
```yaml
111
-
google_analytics: [google analytics Id]
112
-
```
121
+
Visit [Jekyll-minifier](https://github.com/digitalsparky/jekyll-minifier) and add this to your `_config.yml` file to enable minifier.
113
122
123
+
### Pagination
114
124
115
-
### Minifier
125
+
Visit [jekyll-paginate-v2](https://github.com/sverrirs/jekyll-paginate-v2/blob/master/README-GENERATOR.md#site-configuration) and add this to your `_config.yml` file to enable pagination.
116
126
117
-
Visit [Jekyll-minifier](https://github.com/digitalsparky/jekyll-minifier) and add this to your `_config.yml` file to enable minifier.
127
+
### Check [_config.yml](https://github.com/rohitjain00/dev-portfolio-blog/blob/master/_config.yml) for example config file.
118
128
119
-
##### Check [_config.yml](https://github.com/rohitjain00/dev-portfolio-blog/blob/master/_config.yml) for example config file.
120
129
130
+
## Writing a new blog
121
131
122
-
### Pagination
132
+
Create a new folder `_posts` in root folder
123
133
124
-
Visit [jekyll-paginate-v2](https://github.com/sverrirs/jekyll-paginate-v2/blob/master/README-GENERATOR.md#site-configuration) and add this to your `_config.yml` file to enable pagination.
134
+
1. Create a new markdown file in the format `yyyy-mm-dd-postname.md`
0 commit comments