diff options
author | JJ | 2024-07-22 04:42:42 +0000 |
---|---|---|
committer | JJ | 2024-07-22 20:21:58 +0000 |
commit | 3c11f6cca5b73e188289ada66e7924b4b33e4f59 (patch) | |
tree | 2c410c7856d30985dfabf4319dcc6385a6872d1a /_templates/main.html | |
parent | 2a99a0556e17771181eb31b1c9f6fb6ed335158f (diff) |
replace jekyll with hakyll
Diffstat (limited to '_templates/main.html')
-rw-r--r-- | _templates/main.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/_templates/main.html b/_templates/main.html new file mode 100644 index 0000000..093c7da --- /dev/null +++ b/_templates/main.html @@ -0,0 +1,16 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"/> + <meta name="viewport" content="width=device-width, initial-scale=1.0"/> + <link rel="icon" type="image/jpg" href="/assets/light.png"/> + <link rel="stylesheet" href="/css/style.css"/> + <title> $title$ </title> +</head> +<body> +$partial("_templates/header.html")$ +<main> +$body$ +</main> +</body> +</html> |