Skip to content

Commit

Permalink
Merge pull request #34 from vpriesner/master
Browse files Browse the repository at this point in the history
#33 Fixing integration tests as per @thibaultmeyer's suggestion
  • Loading branch information
raphaelbauer authored Jan 3, 2022
2 parents d27e53e + 8a8f1f6 commit 1ef88b3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
<h1>
<a href="/article/${frontArticle.id}">${frontArticle.title}</a>
</h1>
<p>${frontArticle.postedAt?date}</p>
<p><#noescape>${frontArticle.content}</#noescape></p>
<p>${frontArticle.postedAt?date}</p>
<p>${frontArticle.content?no_esc}</p>
</div>
</#if>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<#if article??>

<h1>${article.title}</h1>
<p>${article.postedAt?date}</p>
<p><#noescape>${article.content}</#noescape></p>
<p>${article.postedAt?date}</p>
<p>${article.content?no_esc}</p>

<#else>

Expand Down

0 comments on commit 1ef88b3

Please sign in to comment.