Skip to content

3 post-install questions: collections, favicons, pagination #364

Answered by mmistakes
sudorifix asked this question in Q&A
Discussion options

You must be logged in to vote
  1. Adding collection .md files isn't enough. You need to configure Jekyll so it knows about it. Refer to their documentation. If you look at the theme's test files you'll see these lines in _config.yml. This is how the Recipes collection is configured.
collections:
  recipes:
    output: true
    permalink: /:collection/:path/
  1. Your approach for adding favicons to a local _includes/head-custom.html file is correct. You'll want to examine your source, but on quick look the paths to the favicons are wrong and they are 404ing. That's why they don't show up for you. You need to add a {{ site.baseurl }} path before them or use Jekyll's relative_url filter on the paths so you get /blog/apple-tou…

Replies: 5 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by mmistakes
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #364 on December 09, 2020 03:56.