My Projects
Here are some of my course projects and experimental creations.
See also:
Front matter
The website is created with a static website generator called Hugo. Each of these .md
files start off with some metadata for each page. This metadata is called front matter. I have used the yaml
formatting here. Think of them like variables used for generating the actual HTML page. Some of the variables we use are built-in variables of Hugo and some of them are custom ones that are specific to the theme we use.
---
title: 'Your Name'
draft: false
description: 'This is a documentation folder for my work.'
summary: 'This text shows up under your name'
authors: 'Your Name'
bookCollapseSection: true
image: me.png
---
Formatting
Text on these pages should be written using markdown formatting. See the guide here.