Skip to content

preston-werner-ventures/prestonwernerventures.com

Repository files navigation

logo

Creating a Blog Post

Here's a video to walk you through creating a blog post:

Video embed

And here's a cheatsheet for the most common Markdown elements:

Element Markdown Syntax
Heading # H1
## H2
### H3
Bold **bold text**
Italic *italicized text*
Blockquote > blockquote
Ordered List 1. First item
2. Second item
3. Third item
Unordered List - First item
- Second item
- Third item
Code `code`
Horizontal Rule ---
Link [title](https://www.example.com)
Image ![alt text](image.jpg)

Technical Stuff

This site was created with CameronJS and deployed to Netlify. It uses TailwindCSS for styling and Stimulus for JS.

Simply commit to the GitHub repo and Netlify will build and redeploy the site.

Local Development

yarn global add cameronjs
cameronjs dev

To build locally:

yarn build

See https://cameronjs.com for more documentation for working with CameronJS.