https://github.com/dfirebaugh/pizza-from-scratch
https://github.com/dfirebaugh/pizza-from-scratch
hacktoberfest
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dfirebaugh/pizza-from-scratch
- Owner: dfirebaugh
- Created: 2018-07-15T09:42:14.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T04:56:36.000Z (over 3 years ago)
- Last Synced: 2025-06-06T04:14:51.391Z (about 1 year ago)
- Topics: hacktoberfest
- Language: TypeScript
- Homepage:
- Size: 4.58 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pizza From Scratch
[click here for demo](https://dfirebaugh.github.io/pizza-from-scratch/)
This is a website worked on with
[Bill Lemmond](https://github.com/Pastshelfdate) to publish his cartoons.
### Serving up the site for development
```
npm ci
npm start
```
### Adding Content
Content exists in MarkDown Files in the `content` folder.
You can read up on how to write markdown files [here](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet).
Typically, you will want to make a new folder for each post and place the images that belong in that post in the same folder.
Each markdown file should start with some metadata at the top of the file.
e.g.:
```
---
title: example post 2
description: this is just another example file for testing
date: 09-02-2020
slug: example-post 2
---
```
`slug` must be unique as it is used to reference the post in the code.