2.2 KiB
2.2 KiB
| title | description | date | author | categories | coverImage | coverImageAlt | math | mermaid | ||
|---|---|---|---|---|---|---|---|---|---|---|
| Hello, world | This is the first post on the gly.cz blog. | 2026-07-23 | hangerthem |
|
image.png | A picture of the hello world text in green on a black background. | true | true |
Welcome to the gly.cz blog. Posts here are written in Markdown and turned into static HTML by ==Eleventy==.
Writing a post
Add a Markdown file to src/blog with a title, description, and date in its front matter:
---
title: A post title
description: A short summary.
date: 2026-07-22
author: hangerthem
---
Your post starts here.
The surrounding layout is a React component, while Tailwind Typography styles the generated article HTML.
You can also use other code blocks in your Markdown, like this:
function helloWorld() {
console.log("Hello, world!");
}
Or you can use inline code like console.log("Hello, world!") in your Markdown.
Images
You can add images to your posts by placing them in the src/assets/blog1 directory and referencing them in your Markdown:

It will be rendered as:
[!TIP] You can also use
>to add blockquotes to your posts.
| Column 1 | Column 2 | Column 3 |
|---|---|---|
| Cell 1 | Cell 2 | Cell 3 |
| Cell 4 | Cell 5 | Cell 6 |
$$
\frac{1}{2} + \frac{1}{3} = \frac{5}{6}
- First item2
- Second item
- Third item
- First item
- Second item
- Third item
graph TD;
A[Start] --> B{Is it working?};
B -- Yes --> C[Great!];
B -- No --> D[Check the code];
D --> B
- Term 1
- Definition for term 1.
- Term 2
- Definition A for term 2.
- Definition B for term 2, on a new line.
H2O
- Task 1
- Task 2
