diff options
| author | Tom Smeding <tom@tomsmeding.com> | 2026-08-03 00:16:11 +0200 |
|---|---|---|
| committer | Tom Smeding <tom@tomsmeding.com> | 2026-08-03 00:16:11 +0200 |
| commit | 6412601c368d88aa0e8611ecdeea474946cd6d37 (patch) | |
| tree | 439e66ad8a18c4401c23f852dfe985a3b158c8e3 /src/Pages | |
| parent | 6e8c2b8df3898d0f50463f3151831f5d7c9306a2 (diff) | |
Factor out common parts of templates into partials
Diffstat (limited to 'src/Pages')
| -rw-r--r-- | src/Pages/TH.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Pages/TH.hs b/src/Pages/TH.hs index 2967761..c16075b 100644 --- a/src/Pages/TH.hs +++ b/src/Pages/TH.hs @@ -194,7 +194,7 @@ renderNodes dats buf (node : nodes) = do Just (VQInt, _) -> fail $ "Int value in inverted section scrutinee " ++ show named Just (VQUnit, _) -> fail $ "() value in inverted section scrutinee " ++ show named Nothing -> fail $ "Inverted section scrutinee not found: " ++ show named - M.Partial _ _ -> fail "TODO partials" + M.Partial _ _ -> fail $ "Unresolved partial in template: " ++ show node renderNodes dats (ExpensiveExp buf') nodes |
