โ† Back to home

Example Post Title: Building Something Cool with Gleam

This is a brief summary or excerpt of the blog post. It gives readers a quick overview of what they're about to read. Usually pulled from the post metadata.

Introduction

This is the main content of the blog post. It would contain paragraphs of text, code examples, images, and other markdown-rendered content. The typography is designed to be highly readable with good line spacing and comfortable measure.

Here's another paragraph to show the rhythm and flow of the content. The spacing between paragraphs provides breathing room while maintaining a good reading flow.

Code Example

When writing about technical topics, code examples are essential. Here's what a code block would look like:

import gleam/io

pub fn main() {
  io.println("Hello, Gleam!")

  let result = add(2, 3)
  io.debug(result)
}

fn add(a: Int, b: Int) -> Int {
  a + b
}

And here's some inline code: gleam run to execute your program.

Lists and Structure

Sometimes you need to break things down into lists:

Or numbered lists when order matters:

Blockquotes

This is an example of a blockquote. It could be used for highlighting important quotes, callouts, or emphasized sections of the content.

You can include inline links throughout your content. Text can be bold for emphasis or italicized for subtle emphasis.

Conclusion

This wraps up our example blog post. The design maintains the warm, approachable feel of the main site while providing excellent readability for long-form content.

The typography scales appropriately, code blocks are easy to read, and the overall rhythm makes it pleasant to read through longer articles.