feat: added main header and hotlinks
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
+++
|
||||
paginate_by = 2
|
||||
sort_by = "date"
|
||||
+++
|
||||
@@ -0,0 +1,60 @@
|
||||
+++
|
||||
title = "Dawn Showcase"
|
||||
date = 2022-04-18
|
||||
[taxonomies]
|
||||
tags = ["zola", "theme", "showcase"]
|
||||
+++
|
||||
|
||||
Hi! This is a Showcase of the `Dawn` theme.
|
||||
|
||||
# Code:
|
||||
|
||||
```rust
|
||||
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
|
||||
|
||||
<!-- more -->
|
||||
|
||||
Next part
|
||||
Reference in New Issue
Block a user