2023-01-28 18:40:47 +00:00
|
|
|
+++
|
|
|
|
title = "Hello there!"
|
2023-02-23 16:33:46 +00:00
|
|
|
template = "page.html"
|
2023-01-28 18:40:47 +00:00
|
|
|
+++
|
|
|
|
|
2023-02-07 15:25:43 +00:00
|
|
|
{{ image(src="/profile.jpeg", alt="Profile picture",
|
|
|
|
position="center", style="border-radius: 50%; height: 128px; width: 128px;") }}
|
|
|
|
|
|
|
|
<div style="text-align: center">
|
|
|
|
|
2023-01-28 18:40:47 +00:00
|
|
|
Hi, I'm Sammy.
|
|
|
|
|
|
|
|
Welcome to my little website :3
|
2023-01-28 21:03:46 +00:00
|
|
|
|
2023-02-07 15:25:43 +00:00
|
|
|
</div>
|
|
|
|
|
2023-01-28 21:03:46 +00:00
|
|
|
```Rust
|
|
|
|
///I like to meow
|
|
|
|
fn main() {
|
|
|
|
loop {
|
|
|
|
println!("Meow!");
|
|
|
|
}
|
|
|
|
}
|
2023-02-07 15:25:43 +00:00
|
|
|
|
|
|
|
|
2023-01-28 21:03:46 +00:00
|
|
|
// Honestly I just wanted to have some kind of code block somewhere to see how pretty the syntax highlighting is
|
|
|
|
```
|