diff --git a/ninja-appengine-integration-test-blog/src/main/java/views/ApplicationController/index.ftl.html b/ninja-appengine-integration-test-blog/src/main/java/views/ApplicationController/index.ftl.html index c4df9e9..5504e65 100644 --- a/ninja-appengine-integration-test-blog/src/main/java/views/ApplicationController/index.ftl.html +++ b/ninja-appengine-integration-test-blog/src/main/java/views/ApplicationController/index.ftl.html @@ -9,8 +9,8 @@

${frontArticle.title}

-

${frontArticle.postedAt?date}

-

<#noescape>${frontArticle.content}

+

${frontArticle.postedAt?date}

+

${frontArticle.content?no_esc}

diff --git a/ninja-appengine-integration-test-blog/src/main/java/views/ArticleController/articleShow.ftl.html b/ninja-appengine-integration-test-blog/src/main/java/views/ArticleController/articleShow.ftl.html index 3f56139..40094a4 100644 --- a/ninja-appengine-integration-test-blog/src/main/java/views/ArticleController/articleShow.ftl.html +++ b/ninja-appengine-integration-test-blog/src/main/java/views/ArticleController/articleShow.ftl.html @@ -5,8 +5,8 @@ <#if article??>

${article.title}

-

${article.postedAt?date}

-

<#noescape>${article.content}

+

${article.postedAt?date}

+

${article.content?no_esc}

<#else>