let's see how we go...

This commit is contained in:
Robert Pearce 2020-09-21 22:03:52 -04:00
parent ba4bd84bd0
commit b29661efb6
No known key found for this signature in database
GPG key ID: 07A0E482E5616C9B
35 changed files with 902 additions and 2 deletions

29
src/index.html Normal file
View file

@ -0,0 +1,29 @@
---
description: "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 class="ffs fs fs40">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"
style="max-width:500px;"
/>
</header>
<main>
<section>
<h2 class="ffs fs fs32">Blog Posts</h2>
<ul>
$for(posts)$
<li>
<div><a href="$url$" class="ffss fs fs18">$title$</a></div>
<small class="ffss fs fs14">$date$</small>
</li>
$endfor$
</ul>
</section>
</main>