diff options
Diffstat (limited to '_layouts/default.html')
-rw-r--r-- | _layouts/default.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..a8d8e3f --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8" /> +<meta name="viewport" content="width=device-width, initial-scale=1"> +<title>{{ page.title }} | boringcactus</title> +<link rel="stylesheet" href="/site.css"> +</head> +<body> +<header> +{% if page.url != "/" %} +<p>(brought to you by <a href="/">boringcactus</a>)</p> +{% endif %} +</header> +<main> +{{ content }} +</main> +</body> +</html> |