doctype html
	head
		meta charset: "utf-8"

		title "Razor Leaf example"

		link
			rel: "stylesheet"
			href: "/stylesheets/default.css"

	body
		p id: "example"
			"Hello, world!"
<!DOCTYPE html>

<html>
	<head>
		<meta charset="utf-8">

		<title>Razor Leaf example</title>

		<link rel="stylesheet" href="/stylesheets/default.css">
	</head>
	<body>
		<p id="example">Hello, world!</p>
	</body>
</html>