26 lines
792 B
HTML
26 lines
792 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="utf-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
|
<title>MACH Blog</title>
|
||
|
|
{{> tailwind_script}}
|
||
|
|
</head>
|
||
|
|
<body class="bg-gray-50 min-h-screen">
|
||
|
|
<nav class="bg-white border-b border-gray-200">
|
||
|
|
<div class="max-w-3xl mx-auto px-6 py-4 flex items-center justify-between">
|
||
|
|
<a href="{{url:posts}}" class="text-xl font-bold text-gray-900 hover:text-blue-600 transition">
|
||
|
|
MACH Blog
|
||
|
|
</a>
|
||
|
|
<span class="text-xs text-gray-400">built in 15 minutes</span>
|
||
|
|
</div>
|
||
|
|
</nav>
|
||
|
|
<main class="max-w-3xl mx-auto px-6 py-10">
|
||
|
|
{{$body}}{{/body}}
|
||
|
|
</main>
|
||
|
|
<footer class="max-w-3xl mx-auto px-6 py-6 text-center text-xs text-gray-300">
|
||
|
|
Powered by MACH
|
||
|
|
</footer>
|
||
|
|
</body>
|
||
|
|
</html>
|