mirror of
https://github.com/youwen5/blog.git
synced 2024-11-28 19:23:50 -08:00
30 lines
662 B
HTML
30 lines
662 B
HTML
|
---
|
||
|
desc: "This is me saying hello to the world"
|
||
|
image: "./images/robert-pearce-UwHN0jU_YqQ-unsplash-800w.jpg"
|
||
|
lang: "en"
|
||
|
stylesheet: "default"
|
||
|
title: "Hello, world!"
|
||
|
---
|
||
|
|
||
|
<header>
|
||
|
<h1>Hello, world!</h1>
|
||
|
<img
|
||
|
alt="A woman sitting on a bench amongst trees at the end of a boardwalk leading to a pond with mountains in the background"
|
||
|
src="./images/robert-pearce-UwHN0jU_YqQ-unsplash-800w.jpg"
|
||
|
height="300"
|
||
|
/>
|
||
|
</header>
|
||
|
<main>
|
||
|
<section>
|
||
|
<h2>Blog Posts</h2>
|
||
|
<ul>
|
||
|
$for(posts)$
|
||
|
<li>
|
||
|
<div><a href=".$url$">$title$</a></div>
|
||
|
<small>$date$</small>
|
||
|
</li>
|
||
|
$endfor$
|
||
|
</ul>
|
||
|
</section>
|
||
|
</main>
|