layout | title | description |
---|---|---|
page |
Migration |
This documents shows how to upgrade Hydejack from previous versions (v5) in a step-by-step manner.
|
Unfortunately, upgrading form v5 and earlier is not straightforward. A lot of patterns and names have changed, motivated by a variety of reasons, including better integration with the rest of the Jekyll ecosystem and simplified workflows enabled by Jekyll Collections.
{:.no_toc} 0. this unordered seed list will be replaced by toc as unordered list {:toc}
Copy the the following folders and files from Hydejack v6 into your existing repository. Make sure you merge the folder contents.
_data/
_includes/
_layouts/
_sass/
assets/
index.html
(index.md
*)Gemfile
Gemfile.lock
Note that the public
folder has been renamed to assets
.
You'll want to move your static assets there.
_config.yml
has changed considerably. Open it and make the following changes.
-
Rename the following keys
font_accent
=>font_heading
load_google_fonts
=>google_fonts
google_analytics_id
=>google_analytics
-
Enable Jekyll Collections for categories and tags by adding
collections: featured_categories: permalink: /category/:name/ output: true featured_tags: permalink: /tag/:name/ output: true
-
Delete
photo
andphoto2x
form the author key and add apicture
hash instead that looks likepicture: path: <photo> srcset: 1x: <photo> 2x: <photo2x>
If you have only one photo, you can just provide the URL directly, e.g.
picture: <url>
.For more information, see Adding an author.
-
Rename
gems
toplugins
and make sure the list containsjekyll-seo-tag
.plugins: - jekyll-seo-tag
NOTE: When making changes to _config.yml
, it is necessary to restart the Jekyll process for the changes to take effect.
{:.message}
-
Delete the
tag
folder. -
Create a top-level folder called
_featured_tags
. -
For each entry in
_data/tags.yml
, create a markdown file in_features_tags
with the name of the tag as filename, e.g.hyde.md
for tag "hyde". -
For each tag, copy its contents from
_data/tags.yml
into the new file's front matter, e.g.--- layout: list name: Hyde description: > Hyde is a brazen two-column Jekyll theme... accent_image: /hydejack/public/img/hyde.jpg accent_color: '#949667' ---
Be aware that
image
has been renamed toaccent_image
andcolor
has been renamed toaccent_color
. -
Add
layout: list
to the front matter. -
Once you've copied all tags into their own files, delete
_data/tags.yml
.
Hydejack can now link to any kind of page in the sidebar.
- Delete
sidebar_tags
in_config.yml
. - Open a file who's page you would like to add to the sidebar. If you want to add a tag, open
_featured_tags/<tagname>.md
. - Add
menu: true
to its front matter. - (Optional) Set
order: <number>
, where<number>
is the number at which you would like the link to appear.
The feed is now provided by the jekyll-feed
plugin instead of a custom solution.
-
Delete
atom.xml
-
Add
- jekyll-feed
togems
in_config.yml
, e.g.gems: - jekyll-seo-tag - jekyll-feed
-
(Optional) Add the following to
_config.yml
to make the feed appear at the same URL as the oldatom.xml
.feed: path: atom.xml
The way comments are enabled has changed slightly.
You now have to enable them per page by adding comments: true
to the front matter
(this is what the Disqus integration guide suggests).
To enable them for all posts, add to the config file
defaults:
- scope:
type: posts
values:
comments: true
Hydejack now has a dedicated layout for about pages.
To use it, open about.md
and change the layout
in the front matter to about
and delete {\% include about-short.html author=site.author %\}
.