Jekyll: Difference between revisions

From Kingside Wiki

No edit summary
 
(One intermediate revision by the same user not shown)
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>---
<code>layout: default
<code>title: Kingside Design Blog
<code>type: home
<code>navigation: false
<code>read_time: false
<code>pubdate: false
<code>paginate: true
<code>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>
---</code>

Latest revision as of 07:12, 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

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

---