Skip to content

Latest commit

 

History

History
93 lines (65 loc) · 3.3 KB

README.md

File metadata and controls

93 lines (65 loc) · 3.3 KB

BriansSpareTime blog

An experiment in learning NuxtJS and also in trying to document some of the stuff I do.

See the deployed site here: http://www.brianssparetime.com

Copyright reserved on all photos, videos, prose, and other non-code content included in this repository; no reproduction of such content without written consent in advance.

Features currently implemented:

  • support for automatically generating thumbnails for images, as part of deploy, and serving those instead of full size where it makes sense.
  • added og:image support for proper thumbnails in shares
  • interest pages also built using md files in separate content directory
  • interest pages show only posts related to certain tags
  • multiple images in a markdown post
  • sidebar nav that toggles open and closed
  • embedding YT videos in markdown posts
  • use postcard at top of post
  • make images in posts show up with correct border size and aspect ratio
  • added ignore-loader to suppress webpack warnings
  • limit dimensions of images in posts
  • eliminated need for img folder within each post
  • deploy site to netlify
  • make debug work in VSCode

The Plan / TODO:

Build Setup

Download and install yarn from https://classic.yarnpkg.com/en/docs/install/ or with

# install yarn
curl -o- -L https://yarnpkg.com/install.sh | bash

# install dependencies
$ yarn install

# serve with hot reload at localhost:3000
$ yarn run dev

# build for production and launch server
$ yarn run build
$ yarn start

# generate static project
$ yarn run generate

built with significant help from: