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
- Improve `paginator.html` to support paginated pages that live inside of a subfolder. See [documentation](https://mmistakes.github.io/minimal-mistakes/docs/layouts/#home-page) for more details. [#764](https://github.com/mmistakes/minimal-mistakes/pull/764/)
6
+
7
+
### Maintenance
8
+
9
+
- Add `https` protocol to Google Universal Analytics embed. [#772](https://github.com/mmistakes/minimal-mistakes/pull/772)
alt: "single layout with comments and related posts"
10
-
modified: 2016-12-12T15:20:20-05:00
10
+
modified: 2017-01-24T10:52:47-05:00
11
11
---
12
12
13
13
{% include toc icon="columns" title="Included Layouts" %}
@@ -183,6 +183,16 @@ paginate: 5 # amount of posts to show
183
183
paginate_path: /page:num/
184
184
```
185
185
186
+
If you'd rather have a paginated page of posts reside in a subfolder instead of acting as your homepage make the following adjustments.
187
+
188
+
Create `index.html` in the location you'd like. For example if I wanted it to live at **/blog** I'd create `/blog/index.html` with `layout: home` in its YAML Front Matter.
189
+
190
+
Then adjust the `paginate_path` in **_config.yml** to match.
191
+
192
+
```yaml
193
+
paginate_path: /blog/page:num
194
+
```
195
+
186
196
**Note:** Jekyll can only paginate a single `index.html` file. If you'd like to paginate more pages (e.g. category indexes) you'll need the help of a custom plugin. For more pagination related settings check the [**Configuration**]({{ "/docs/configuration/#paginate" | absolute_url }}) section.
- Improve `paginator.html` to support paginated pages that live inside of a subfolder. See [documentation](https://mmistakes.github.io/minimal-mistakes/docs/layouts/#home-page) for more details. [#764](https://github.com/mmistakes/minimal-mistakes/pull/764/)
15
+
16
+
### Maintenance
17
+
18
+
- Add `https` protocol to Google Universal Analytics embed. [#772](https://github.com/mmistakes/minimal-mistakes/pull/772)
0 commit comments