cl-website/layouts/default.html

17 lines
417 B
HTML
Raw Normal View History

2025-02-20 21:28:08 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ title }}</title>
<link rel="stylesheet" href="/assets/css/styles.css">
</head>
<body>
<div class="container">
<span class="title">colourlabs</span>
<div class="content">
{{ content }}
</div>
</div>
</body>
</html>