Skip to content

Latest commit

 

History

History
58 lines (35 loc) · 1.1 KB

readme.md

File metadata and controls

58 lines (35 loc) · 1.1 KB

website docs

Adding Content

How to add event?

go to /content/events/[year]/ and make a new md file.

then, place:

---
title: "This is my title!"
categories: ["workshop"]
date: 2024-01-01T00:00:00
end: 2024-01-01T01:00:00
---

This is an event that will cover xyz

end and categories are optional but recommended

You can put any markdown inside, start with l2 headings though

How to make new page?

go to /content/events/[year]/ and make a new md file. (optionally place in subfolder)

---
title: "My Page"
url: "mypage"
---

Content here!

The title will be displayed at the top of the page, the url can be chosen!

Changing HTML/Styles

top tips:

  • please do NOT use javascript, it is almost always unnecessary
  • use idiomatic HTML that is accessible and "correct"

Changing HTML

Most HTML assets can be found in themes/themename/layouts/. Variables & partials are your friend!

Changing styles

Stylesheets can be found in themes/themename/assets/sass

main.scss is compiled, which imports other scss files. Use variables and imports and much as possible!