Skip to content

How to do things

Kyle Niewiada edited this page Sep 27, 2021 · 2 revisions

How to:

Below are examples on how to do specific basic tasks on this website.

Write a post

Each post should be located in the _posts directory and follow the proper Jekyll naming convention.

The post Front Matter should contain the following for all dependencies:

---
title: "PostTitle"
date: "2017-01-04 5:37" 
comments: true # Turn on or off comments for post
image:
  path: /assets/img/2017/01/banner.jpg
  height: 400
  width: 700
alt: Image Alt Text 
tag: "small project" # Tag used for Post Collating
description: "Meta text used for SEO/JSON-LD"
---

Image dimensions and date are used for the SEO tags and amp-jekyll generation.

alt (image alt) tags are not a valid JSON-LD attribute; It is placed outside of the image object or else it interferes with JSON-LD SEO image object generation.

Favicons

Favicon sets (like Apple-Touch-Icon) were added using RealFaviconGenerator

Clone this wiki locally