From 4bcaf09cc6bf7b1347bfb3feba16a2122ea37382 Mon Sep 17 00:00:00 2001 From: Sebastien Deleuze Date: Wed, 13 Mar 2019 10:54:27 +0100 Subject: [PATCH] Fix documentation inconsistencies Closes gh-26 --- README.adoc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.adoc b/README.adoc index 2c1d09e..ff04de7 100644 --- a/README.adoc +++ b/README.adoc @@ -665,7 +665,7 @@ We update the "blog" Mustache templates. {{#articles}}
-

{{title}}

+

{{title}}

@@ -711,6 +711,7 @@ class HtmlController(private val repository: ArticleRepository) { @GetMapping("/") fun blog(model: Model): String { + model["title"] = properties.title model["articles"] = repository.findAllByOrderByAddedAtDesc().map { it.render() } return "blog" }