28 lines
483 B
Markdown
28 lines
483 B
Markdown
|
+++
|
||
|
title = "Hello there!"
|
||
|
template = "page.html"
|
||
|
+++
|
||
|
|
||
|
{{ image(src="/profile.jpeg", alt="Profile picture",
|
||
|
position="center", style="border-radius: 50%; height: 128px; width: 128px;") }}
|
||
|
|
||
|
<div style="text-align: center">
|
||
|
|
||
|
Hi, I'm Sammy.
|
||
|
|
||
|
Welcome to my little website :3
|
||
|
|
||
|
</div>
|
||
|
|
||
|
```Rust
|
||
|
///I like to meow
|
||
|
fn main() {
|
||
|
loop {
|
||
|
println!("Meow!");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
// Honestly I just wanted to have some kind of code block somewhere to see how pretty the syntax highlighting is
|
||
|
```
|