Skip to content
This repository was archived by the owner on May 12, 2019. It is now read-only.

Commit a0a162d

Browse files
committed
updated
1 parent 43bf742 commit a0a162d

File tree

1 file changed

+26
-7
lines changed

1 file changed

+26
-7
lines changed

DOCUMENTATION.md

+26-7
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ As the screenshot, you need to use for the proxying the same port as your Ghost
112112

113113
### Google Analytics
114114

115-
Go to Ghost admin panel -> `Code Injection` -> `Blog Header` and add:
115+
Go to Ghost Admin panel -> `Code Injection` -> `Blog Header` and add:
116116

117117
```html
118118
<script>
@@ -122,21 +122,36 @@ var ga_id = 'UA-YOUR_ID_HERE';
122122

123123
### Comments
124124

125-
Go to Ghost admin panel -> `Code Injection` -> `Blog Header` and add:
125+
Go to Ghost Admin panel -> `Code Injection` -> `Blog Header` and add:
126126

127127
```html
128128
<script>
129129
var disqus_shortname = 'YOUR_DISQUS_SHORTCUT_HERE';
130130
</script>
131131
```
132132

133-
### Sidebar title and subtitle
133+
### Sidebar title
134134

135-
Go to Ghost admin panel -> `Code Injection` -> `Blog Header` and add:
135+
By default, the title that you see in the open page of your blog is extracted from your blog settings (Admin panel -> Blog Title).
136+
137+
If you want to customize it, you can do it:
138+
139+
Go to Ghost Admin panel -> `Code Injection` -> `Blog Header` and add:
136140

137141
```html
138142
<script>
139143
var profile_title = 'Kiko Beats';
144+
</script>
145+
```
146+
147+
### Sidebar subtitle
148+
149+
The purpose of the subtitle is resume the bio in a phrase. This will be shown in the mobile/tablet version instead of the bio.
150+
151+
Go to Ghost Admin panel -> `Code Injection` -> `Blog Header` and add:
152+
153+
```html
154+
<script>
140155
var profile_resume ='Software Engineer';
141156
</script>
142157
```
@@ -151,7 +166,7 @@ Edit the file `partials/social.hbs`.
151166

152167
### Links
153168

154-
Go to Ghost admin panel -> `Navigation` and add/edit items.
169+
Go to Ghost Admin panel -> `Navigation` and add/edit items.
155170

156171
"Blog" link is always included by default, so you don't need to add it manually.
157172

@@ -161,15 +176,19 @@ Create your favicons with [Favicon Generator](http://realfavicongenerator.net/)
161176

162177
### Cover
163178

164-
Replace the `assets/img/cover.jpg` file. If you put another with different extensin remember modify the CSS for do it.
179+
Go to Ghost Admin panel -> `Code Injection` -> `Blog Cover`
180+
181+
### Cover Filter
182+
183+
The linear gradient of the cover filter is based in `$cover-primary` and `$cover-secondary` colors. If you want to adapt the filter for your cover, check [background-filter](https://github.com/Kikobeats/uno-zen/blob/master/assets/scss/modules/_mixins.scss#L11) mixin.
165184

166185
### Custom static pages
167186

168187
Check the [page part](http://themes.ghost.org/v0.6.4/docs/page-context) in the Ghost Official Documentation.
169188

170189
### Multiaccount support
171190

172-
You can enable the multiaccount support editing `posts.hbs` code commented inside the meta post information.
191+
You can enable the multiaccount support editing [posts.hbs](https://github.com/Kikobeats/uno-zen/blob/master/post.hbs#L11-L13) code commented inside the meta post information.
173192

174193
## Preparing for production
175194

0 commit comments

Comments
 (0)