Minimal Theme

Page layouts

Archive Pages

This theme fully supports Jekyll Archives plugin.

  1. 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/'
  1. Copy archive.html page from /docs/pages/ demo folder in to your sites /pages/ directory.

  2. Copy category.html and tag.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.