Blog features showcase

Blog features showcase

meta 2025-09-01 1 min

This is a test post showing the various GhostCMS elements, and how they render with my custom Eleventy theme.

Lists

  • Bullet
  • List
  1. Ordered
  2. List
  • Multi
    • Level
      • List
        • Also

Text formatting

This is some bold content, italic content, underlined content, and a mix of bold-italic, bold-underline, italic-underline, and even bold-italic-underline!

Here is an external link: Google

And here's an inline code block

A quoted message here

Header Level 1

Header Level 2

Header Level 3

Header Level 4

Header Level 5
Header Level 6

Horizontal Separator


Image

A white Honda S600 sitting at traffic lights
The Honda S600, sometimes referred to as the Honda S2000's little brother

Code Blocks

# this is some Python code
def greet(who):
  print(f"Hello, {who}!")

greet("World")
// and some JavaScript code
function greet(who) {
  console.log(`Hello, ${who}!`);
}

greet("World");
// and some Rust code
fn greet(who: &str) {
  println!("Hello, {}!", who);
}

greet("World");

And a code block with some diff-highlighting

def hello(name):
-  print("Hello, %s!" % name)
+  print(f"Hello, {name}!")

Tables

testtablewithtitles
abcd
1234
wxyz

Callout Cards

💡
This is a "white" callout-card
💡
This is a "grey" callout-card
💡
This is a "blue" callout-card
💡
This is a "green" callout-card