Job Board theme for Gatsby.
To use this theme in your Gatsby site, follow these instructions:
-
Install the theme
npm install --save @smnk/gatsby-theme-job-board
-
Add the theme to your
gatsby-config.js:module.exports = { plugins: ["@smnk/gatsby-theme-job-board"], }
-
Start your site
gatsby develop
Example:
module.exports = {
siteMetadata: {
title: "My Gatsby Job Board",
author: "Your Name",
description:
"Description of your job board. Should be short as it will be displayed on all pages.",
siteUrl: "https://yoursite.com",
},
}Change your sites logo in content/assets/. Can be any image format.
Jobs can be edited and added via Markdown files. You'll find those in content/jobs. You can supply all necessary details like below. The url will be linked below the job description to apply.
---
title: Theme Developer
company: Gatsby
location: Remote
date: "2019-07-31"
companyLogo: "./logo.png"
url: https://gatsbyjs.org
---
Description goes here.
And so on.