Fries
5cbbacec23
this has the exact same syntax as tera (jinja style) but its compile time which is very useful for having a portable binary that doesn't require any files to run like a templates folder or public folder.
15 lines
317 B
HTML
15 lines
317 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width">
|
|
<title>Meowy Webring - {{ error }}</title>
|
|
<link rel="stylesheet" href="/public/style.css" />
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<h1>{{ error }}</h1>
|
|
<p>{{ error_description }}</p>
|
|
</main>
|
|
</body>
|
|
</html>
|