Fixing category and tag pages
This commit is contained in:
parent
63df964715
commit
86c34baacd
15
_config.yml
15
_config.yml
|
@ -9,7 +9,7 @@
|
|||
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
|
||||
|
||||
theme : "minimal-mistakes-jekyll"
|
||||
minimal_mistakes_skin : "default" # "air", "aqua", "contrast", "dark", "dirt", "neon", "mint", "plum", "sunrise"
|
||||
minimal_mistakes_skin : "dark" # "default" "air", "aqua", "contrast", "dark", "dirt", "neon", "mint", "plum", "sunrise"
|
||||
|
||||
# Site settings
|
||||
# These are used to personalize your new site. If you look in the HTML files,
|
||||
|
@ -38,7 +38,7 @@ repository : # GitHub username/repo-name e.g. "mmistakes/minimal-m
|
|||
teaser : # path of fallback teaser image, e.g. "/assets/images/500x300.png"
|
||||
logo : "/assets/images/apple-touch-icon.png" # path of logo image to display in the masthead, e.g. "/assets/images/88x88.png"
|
||||
masthead_title : "" # overrides the website title displayed in the masthead, use " " for no title
|
||||
breadcrumbs : true # true, false (default)
|
||||
breadcrumbs : false # true, false (default)
|
||||
words_per_minute : 200
|
||||
comments:
|
||||
provider : # false (default), "disqus", "discourse", "facebook", "google-plus", "staticman", "utterances", "custom"
|
||||
|
@ -138,13 +138,16 @@ footer:
|
|||
links:
|
||||
- label: "Twitter"
|
||||
icon: "fab fa-fw fa-twitter-square"
|
||||
url: "https://twitter.com/"
|
||||
url: "https://twitter.com/tarasis"
|
||||
- label: "Facebook"
|
||||
icon: "fab fa-fw fa-facebook"
|
||||
url: "https://www.facebook.com/tarasis"
|
||||
- label: "GitHub"
|
||||
icon: "fab fa-fw fa-github"
|
||||
url: "https://github.com/"
|
||||
url: "https://github.com/tarasis"
|
||||
- label: "Instagram"
|
||||
icon: "fab fa-fw fa-instagram"
|
||||
url: "https://instagram.com/"
|
||||
url: "https://instagram.com/tarasis"
|
||||
|
||||
|
||||
# Reading Files
|
||||
|
@ -214,7 +217,7 @@ sass:
|
|||
|
||||
# Outputting
|
||||
permalink: /:categories/:title/
|
||||
paginate: 5 # amount of posts to show
|
||||
paginate: 10 # amount of posts to show
|
||||
paginate_path: /page:num/
|
||||
timezone: # http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
|
||||
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: "Posts by Category"
|
||||
layout: categories
|
||||
permalink: /categories/
|
||||
---
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: "Posts by Tag"
|
||||
permalink: /tags/
|
||||
layout: tags
|
||||
---
|
Loading…
Reference in New Issue