Page layouts
Archive Pages
This theme fully supports Jekyll Archives plugin.
- Update your sites
_config.yml
file with the required settings.
# Jekyll Archives Settings https://github.com/jekyll/jekyll-archives
jekyll-archives:
enabled:
- categories
- tags
- year
- month
- day
layout: 'archive'
permalinks:
year: '/:year/'
month: '/:year/:month/'
day: '/:year/:month/:day/'
tag: '/tag/:name/'
category: '/category/:name/'
-
Copy
archive.html
page from/docs/pages/
demo folder in to your sites/pages/
directory. -
Copy
category.html
andtag.html
pages from/docs/pages/
demo folder in to your sites/pages/
directory. These pages will auto update all categories and tags automatically every time you build your site.
BTW the year, month & day archive pages are auto-generated for you using the archive.html
layout.