Jekyll: Difference between revisions

From Kingside Wiki

No edit summary
No edit summary
Line 3: Line 3:
=== Posting Links to Websites with Images ===
=== Posting Links to Websites with Images ===
<code>{% include media-image.html file="jekyll-website.jpg" title="Jekyll Website" caption="The documentation includes everything you need to know to install Jekyll — it's an excellent reference too" link="http://jekyllrb.com" %}</code>
<code>{% include media-image.html file="jekyll-website.jpg" title="Jekyll Website" caption="The documentation includes everything you need to know to install Jekyll — it's an excellent reference too" link="http://jekyllrb.com" %}</code>
=== Adding Posts & Pages ===
Create a new file formatted <code>YYYY-MM-DD-my-first-post.md</code> in <code>_posts</code> with a <code>.md</code> or <code>.markdown</code> extension
==== Front Matter ===
<code>
---
layout: default
title: Kingside Design Blog
type: home
navigation: false
read_time: false
pubdate: false
paginate: true
hero: false
date: 2021-03-17
image: mic-header.jpg
excerpt: Where I randomly feel compelled to share stuff I want to remember or find interesting!
gradient: gray
#author: Max Andreola
#bio: Mobile UX Engineer & Technologist
#photo: me.jpg
#twitter: https://twitter.com/kingside
#linkedin: http://www.linkedin.com/in/max-andreola
#github: https://github.com/Kingside
#email: hello@max.andreola.info
share: false
---
</code>

Revision as of 07:08, 27 February 2023

Post Content

Posting Links to Websites with Images

{% include media-image.html file="jekyll-website.jpg" title="Jekyll Website" caption="The documentation includes everything you need to know to install Jekyll — it's an excellent reference too" link="http://jekyllrb.com" %}

Adding Posts & Pages

Create a new file formatted YYYY-MM-DD-my-first-post.md in _posts with a .md or .markdown extension

= Front Matter

--- layout: default title: Kingside Design Blog type: home navigation: false read_time: false pubdate: false paginate: true hero: false

date: 2021-03-17 image: mic-header.jpg excerpt: Where I randomly feel compelled to share stuff I want to remember or find interesting! gradient: gray

  1. author: Max Andreola
  2. bio: Mobile UX Engineer & Technologist
  3. photo: me.jpg
  4. twitter: https://twitter.com/kingside
  5. linkedin: http://www.linkedin.com/in/max-andreola
  6. github: https://github.com/Kingside
  7. email: hello@max.andreola.info

share: false ---