Skip to content

A Saber theme for blogging, based on Jigsaw's Blog Template.

Notifications You must be signed in to change notification settings

begrafx/saber-theme-tailsaw

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tailsaw: Saber Blog Starter Template

This is a starter template for creating a beautiful, customizable blog in Saber with minimal effort. It is based on the Blog Template for Jigsaw. See the demo.

Installation

yarn add saber-theme-tailsaw

Then, in your Saber config file:

theme: tailsaw

This starter template includes samples of common page types, and comes pre-configured with:

  • A fully responsive theme
  • Tailwind CSS, a utility CSS framework that allows you to customize your design without touching a line of CSS
  • Syntax highlighting using Prism
  • Progress bar and page transition
  • A custom 404 page
  • A component for accepting newsletter signups
  • A sample contact form

Coming soon:

  • A search bar which indexes your content automatically and requires zero configuration
  • RSS feed and sitemap generator
  • Config options

Adding Content

You can write your content using a variety of file types. Your content is located in the pages/_posts/ folder.

The top of each content page contains a YAML header that specifies how it should be rendered. The title attribute is used to dynamically generate HTML title and OpenGraph tags for each page. The layout attribute defines which parent layout this content file will render with (e.g. post will render with theme/layouts/post.vue).

---
title: First Post
layout: post
date: 2019-04-29
author: Jane
categories:
  - meta
slug: first-post
cover: /cover-1.png
featured: true
---

Adding Assets

You can easily include assets in your posts, just by linking to their relative location.


Building Your Site

Now that you know how to customize your content, let’s build the site.

yarn build

Your built site is under public/.

About

A Saber theme for blogging, based on Jigsaw's Blog Template.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 64.2%
  • Vue 35.8%