content
├── index.md
└── about.md
layout
├── base.html
└── page.html
html
<!DOCTYPE html>
<html>
<head>
<title>{{ page.title }}</title>
</head>
<body>
<header>
<h1>My Website</h1>
<nav>
<a href="/about/">About</a>
</nav>
</header>
{{ content }}
</body>
</html>
html
{% extends "base.html" %}
{% block content %}
<h2>{{ page.title }}</h2>
<div>
{{ page.content }}
</div>
{% endblock %}
hyde:
deployment:
default: test
test:
type: filesystem
path: deploy
website:
title: My Website
media_urls:
- /media