Skip to content

Latest commit

 

History

History
41 lines (29 loc) · 1.08 KB

README.md

File metadata and controls

41 lines (29 loc) · 1.08 KB

Beta sites

Requirements

Setup

  1. Clone the repository onto your computer
  2. Run npm install
  3. Run npm run dev to run the project locally and see the live webpage in your browser

Structure

  • pages - different webpages
    • about - contains different js for each page
    • blog - process the md files in /posts
    • media - photos & videos pages
  • partials - parts such as the header or footer
  • posts - markdown blog posts
  • utils - helper tools

Blog

Create a new .md file in /posts

Resize Images

![foo](foo.jpg =100x80)     simple, assumes units are in px
![bar](bar.jpg =100x*)      sets the height to "auto"
![baz](baz.jpg =80%x5em)  Image with width of 80% and height of 5em