go install github.com/peterszarvas94/lytepage@latestlytepage init my-appcontent/hello/world.md
---
title: "Amazing article"
---
## Hello world
How awesome this site is!
Learn:
- go
- templtempl PostPage(post *fileutils.FileData) {
<h1>
{ post.Matter.Title }
</h1>
<div class="markdown-body">
@fileutils.HtmlString(post.Html)
</div>
}make genThe generated public/hello/world/index.html:
<h1>Amazing article</h1>
<div class="markdown-body">
<h2>Hello world!</h2>
<p>How awesome this site is!</p>
<p>Learn:</p>
<ul>
<li>go</li>
<li>templ</li>
</ul>
</div>SSR mode:
make ssrStatic mode:
make staticNow localhost:8080/hello/world is serving your content
Dev mode - soon!