rendering md with layouts
This commit is contained in:
Vendored
+18
@@ -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|
|
||||
|
||||
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>blog - $title</title>
|
||||
</head>
|
||||
<body>
|
||||
$content
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user