1.0 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.0 KiB
		
	
	
	
	
	
	
	
+++ title = "Dawn Showcase" date = 2022-05-07 [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 code: print("Hi")
Typography:
Italic, Bold, Italic Bold, link
Header 1
Header 2
Header 3
Header 4
Quote:
The world isn't perfect. But it's there for us, doing the best it can. That's what makes it so damn beautiful.
Lists
- A
- B
- a
- b
- c
Horizontal line:
Here the post summary ends.
fin post summary
Latex:
 \partial\partial\partial 
{{ katex(body="3 + 4") }}
{{ katex(block=true, body="\KaTeX") }}
Images:
{{ image(src="/ferris.png", alt="Ferris", position="right", style="width: 20%; height: 20%;") }}