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
{{ message }}
This repository was archived by the owner on May 12, 2019. It is now read-only.
Copy file name to clipboardexpand all lines: DOCUMENTATION.md
+26-7
Original file line number
Diff line number
Diff line change
@@ -112,7 +112,7 @@ As the screenshot, you need to use for the proxying the same port as your Ghost
112
112
113
113
### Google Analytics
114
114
115
-
Go to Ghost admin panel -> `Code Injection` -> `Blog Header` and add:
115
+
Go to Ghost Admin panel -> `Code Injection` -> `Blog Header` and add:
116
116
117
117
```html
118
118
<script>
@@ -122,21 +122,36 @@ var ga_id = 'UA-YOUR_ID_HERE';
122
122
123
123
### Comments
124
124
125
-
Go to Ghost admin panel -> `Code Injection` -> `Blog Header` and add:
125
+
Go to Ghost Admin panel -> `Code Injection` -> `Blog Header` and add:
126
126
127
127
```html
128
128
<script>
129
129
var disqus_shortname ='YOUR_DISQUS_SHORTCUT_HERE';
130
130
</script>
131
131
```
132
132
133
-
### Sidebar title and subtitle
133
+
### Sidebar title
134
134
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:
136
140
137
141
```html
138
142
<script>
139
143
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>
140
155
var profile_resume ='Software Engineer';
141
156
</script>
142
157
```
@@ -151,7 +166,7 @@ Edit the file `partials/social.hbs`.
151
166
152
167
### Links
153
168
154
-
Go to Ghost admin panel -> `Navigation` and add/edit items.
169
+
Go to Ghost Admin panel -> `Navigation` and add/edit items.
155
170
156
171
"Blog" link is always included by default, so you don't need to add it manually.
157
172
@@ -161,15 +176,19 @@ Create your favicons with [Favicon Generator](http://realfavicongenerator.net/)
161
176
162
177
### Cover
163
178
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.
165
184
166
185
### Custom static pages
167
186
168
187
Check the [page part](http://themes.ghost.org/v0.6.4/docs/page-context) in the Ghost Official Documentation.
169
188
170
189
### Multiaccount support
171
190
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.
0 commit comments