dawn/content/showcase.md

664 B

+++ title = "Dawn Showcase" date = 2022-04-18 [taxonomies] tags = ["zola", "theme", "showcase"] +++

Hi! This is a Showcase of the Dawn theme.

Code:

use std::error::Error;

#[derive(Debug)]
struct Test {
    pub lang: String,
    pub content: String
}

fn main() -> Result<(), Box<dyn Error>> {
    let a = Test {
        lang: "en".to_string(),
        content: "content".to_string()
    };
    println!("{:?}", a);
    Ok(())
}

Inline

print("Hi")

Typography

Italic, Bold, Italic Bold, link

Quote

Helo

Lists

  • A
  • B
  1. a
  2. b
  3. c

fin post summary

Next part