yarn add saber-theme-tufte
In your saber-config.yml
:
theme: tufte
This theme works best with following plugins:
saber-plugin-query-posts
: Injectposts
to homepage'spage
prop, generate tag pages
yarn add saber-plugin-query-posts
plugins:
- resolve: saber-plugin-query-posts
post
: For individual blog posts.page
: For normal page with only the header and footer.default
: A home page to show all your posts.
The default page can be customized with a title, subtitle, and description:
layout: default
# Inject post list as `page.posts` (by saber-plugin-query-posts)
injectAllPosts: true
title:
subtitle:
description:
Configure site title, description etc in your saber-config.yml
:
siteConfig:
title: My Site
description: About this website.
author: My Name
email: my@email.com
Configure nav
to show a set of links in header and optional repository link:
themeConfig:
nav:
- text: Home
link: /
- text: About
link: /about.html
MIT.