-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathshosi.html
More file actions
154 lines (96 loc) · 3.7 KB
/
shosi.html
File metadata and controls
154 lines (96 loc) · 3.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
---
layout: doc-layout
title: Shosi ghost blogging theme
theme_name: Shosi
buy: https://www.electronthemes.com/ghost
demo: https://www.electronthemes.com/ghost
thumbnail: shosi/shosi-preview.jpg
---
# {{page.title}} {#title}
{% include ghost-support.html %}
## Installation {#installation}
Login to your ghost blog `https://yourdomain.com/ghost` then navigate to `Designs > Uploads` Themes.
Drug your downloaded theme zip file.

## Active beta features
Activate beta features for featured slider data, realtime search, subscriber option
Go to:
`Dashboard > Labs`

## Menu/Navigation Setup
Handle theme menu items from `Settings > Design` in the navigation section

## Setup blog title, header and description
**Go to:**
- General > Publication icon for Favicon
- General > Publication logo for Logo
- General > Publication cover for Cover Image
General > Title & description


## New Page
To create new page, go to `Dashboard > Stories > New Story` Give the title for new stories and mark "Turn this post
into a page" from the settings icon

## Tag
To create tag, go to `Dashboard > tags`

## Authors
To create Author, go to `Dashboard > Team`

## Social Profile Links
You can change header and footer social profile links from Ghost dashboard `General > Social Accounts` You can change
only facebook and twitter from here.

You can add other social profile links from the theme files. `partials > social-profiles.hbs` If you ask me to help, I
will help you to change the social links

## Setup Featured Slider
When you set up your post as featured, it will add automatically to featured slider. I suggest you to select such a
post as featured post which has post featured image.
**You can follow this step:**
Featured image for the post. You will see like this.

# Setup Pages {#setup}
## Tag List Page
Create a page name `Tags` or anything and select the page template `Tags` from the settings.

## Author List
Create a page name `Authors` or anything and select the page template `Authors` from the settings. You will get 2
author list page template. `Authors` and `Author Style 2`. Select one of them.

## Full Width Single Post

## Real Time Search Feature
Search will not work when you install the ghost theme. You need to add API for the search option activation. Follow the
instraction to make the API key.
1. Go to to `Settings > Integrations > Custom integrations > + Add custom integration`
2. Enter a name of "New Custom Integration" and create
3. Copy `Content API Key` fro API Keys
4. Go to `Settings > Code injections > Blog Header`
5. Add `script` like this to add api key. Don't change the variable name.
```
<script>
var contentApiKey = "your api key";
</script>
```
Replace `your api key` with your api key that you created.
API Code creation:

<br>
API code injection:

<br>
Search result:

## Setup posts to show per page
```js
"config": {
"posts_per_page": 6
}
```
Change `posts_per_page`’s value as your wish.
After changing this you need to `restart` your ghost
```
ghost restart
```