Blog

To edit the blog page edit src/blog.md

The blog page uses the layout: blog

The blog page automatically lists post content from the posts collection src/posts

The blog is a fully featured 11ty blog

  • pagination
  • categories
  • authors

Frontmatter

# src/blog.md
---
layout: blog
title: Blog
description: "The latest news and opinions"
permalink: "/blog/"
header_transparent: false
pagination:
  enabled: true

hero:
  enabled: false
  heading: "Blog"
  sub_heading: ""
  background_image: "assets/images/services/nastuh-abootalebi-yWwob8kwOCk-unsplash.jpg"
  background_image_blend_mode: "overlay"
---

Config

The frontmatter section hero is optional. They allow you to enhance the design with extra info above and below the list of services in the middle of the page.

To remove a section simply delete the frontmatter field or set enabled: false

Pagination

This theme uses the 11ty-paginate gem.

Global pagination config

You can configure more pagination settings in the _data/site.yml

# _config.yaml
...

paginate: 3
paginate_path: "/blog/page:num/"