Community Plugin
View plugin on GitHub@westegg/gatsby-theme-jasper
This theme extends scttcper/gatsby-theme-casper with further styling and works well with @westegg/gatsby-theme-core.
This Gatsby Theme lives in Westegg.
Try out the demo
Copy the starter from the repo
Getting Started
git clone git@github.com:westegg/westegg.git
cp -r westegg/starters/westegg-jasper new-site
cd new-site
yarn install
yarn build
Options
Options (defaults shown) can be set in gatsby-config.js
as follows.
module.exports: {
plugins: {
resolve: "@westegg/gatsby-theme-digital-garden",
options: {
header: {
home: {
href: "/",
label: "Westegg Jasper"
},
links: [
{
href: "/notes",
label: "Themes"
}
]
},
}
},
siteMetadata: {
title: "Westegg Jasper",
description: "The mountainous publishing platform",
coverImage: "img/blog-cover.jpg",
logo: "img/ghost-logo.png",
lang: "en",
siteUrl: "https://gatsby-casper.netlify.com", // full path to blog - no ending slash
facebook: "https://www.facebook.com/ghost",
twitter: "https://twitter.com/tryghost",
showSubscribe: false, // subscribe button in site nav and home page
mailchimpAction: "", // 'https://twitter.us19.list-manage.com/subscribe/post?u=a89b6987ac248c81b0b7f3a0f&id=7d777b7d75',
mailchimpName: "", // 'b_a89b6987ac248c81b0b7f3a0f_7d777b7d75',
mailchimpEmailFieldName: "", // 'MERGE0',
googleSiteVerification: "", // 'GoogleCode',
footer: "is based on National Parks of Canada",
footerLink: "", // "https://westegg.xyz",
footerShowRss: true,
postsPerPage: 6
}
}