rendering md with layouts

This commit is contained in:
2025-08-30 01:11:01 -05:00
parent b329ba8261
commit eaadadecbb
6 changed files with 202 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
+++
layout = "layouts/post.html"
title = "Pest Toast"
+++
Test
===
This is a test. This is only a test.
~~~rust
fn main() {
println!("Here is some Rust")
}
~~~
|This|is|
|----|--|
|a|table|
+9
View File
@@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<title>blog - $title</title>
</head>
<body>
$content
</body>
</html>