Hello from GitHub Pages + Jekyll
View the Project on GitHub e2xperimental/software-cheatsheet
by
theme: jekyll-theme-minimal
title: My Site
description: Hello from GitHub Pages + Jekyll
That theme: line tells Pages to build the site with Jekyll and apply one of GitHub’s built-in themes. You can swap jekyll-theme-minimal for any supported theme later.
---
layout: default
title: Home
---
# Welcome
This page was built with **Jekyll** on **GitHub Pages** — no terminal!
Commit, then refresh your site URL. (Small publishes may also take a few minutes.)
https://jekyllrb.com/docs/front-matter/
https://jekyllrb.com/docs/liquid/
Use the # symbol.
# This is a comment
key: value # inline comment
# Another comment
You can use YAML front matter comments, at the top of Markdown files.
---
# This comment is in the YAML front matter
title: My Post
---
Use <!-- --> HTML comment syntax
<!-- This is a comment and won't appear when rendered -->
Some content here
<!--
Multi-line comment
Still won't appear
-->