Portfolio for Jenny. Built on Jekyll.
Jenny's Portfolio uses Bundler and Jekyll. To install:
# Ensure bundle is installed
gem install bundler
# Install the gems
bundle install
Run with:
bundle exec jekyll serve
There are three main folders you'll want to edit:
src/_technical-writing
: where all the technical writing files residesrc/_content-writing
: where all the content writing files residesrc/_includes
: where the About and Contact pages reside.md
which stands for Markdown. Jenny's Best Title Ever = jennys-best-title-ever.md
All your articles are written in Markdown, which makes it easy to edit. The basics you'll use for this site are:
### For Subheadlines
_for italics_
*for bold*
[]() for links, as in [The link button](http://www.the-link-url)
And blank spaces between paragraphs
For full documentation visit the Markdown website.
All of your Markdown files must have dashes at the top of the document. This is called Front Matter. Front Matter allows you to specify additional properties on the document, which are all optional. Front Matter properties for Technical Writing and Content Writing articles are:
---
title: Which changes the title of your document. This is useful for when you need to add punctuation to the title
date: The date of the published article. Newer dates appear first in sort order
publisher: The name of the publisher who published the article
published_url: The url of the published article (from an external site)
image_url: The url of the image from the article (from an external site)
---
gh-pages
branch