Contributing
These are the instructions for contributing to the blog…
Adding pictures to markdown posts
Because the images are stored relative a base url directory in the github.io pages, you have to add these to the links for the markdown files. In addition, jekyll copies files only from certain directories so put the images in the /assets/images/
directory. The steps to add an image to a md post are:
- Copy the image into
/assets/images/
- add the markdown image code using the baseurl site like this (the site.baseurl is “/loyds_blog”)

Adding a banner and a thumbnail
in the front matter if you include
image: someimage.jpg
then this image will be shrunk and played with to make it into the post banner and the thumbnail. If no
post.image
is given then you can seperate the pictures intopost.banner
andpost.thumbnail
.banner: someBanner.jpg thumbnail: someThumbnail.jpg
However, if
post.image
is given then that will be used and thepost.banner
andpost.thumbnail
will be ignored.