Skip to content
This repository has been archived by the owner on Jan 2, 2018. It is now read-only.

Commit

Permalink
Merge pull request #27 from rocjs/fix/correct-template
Browse files Browse the repository at this point in the history
Made the template more correct to work with the new version of Nunjucks
  • Loading branch information
dlmr authored Sep 8, 2016
2 parents b6cd5d2 + 4a436f1 commit 2ddd7a4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/roc-package-web-app-react/views/main.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">

{{ head.title | safe }}
{{ head.meta | safe }}
{{ head.link | safe }}
{{ head.base | safe }}
{{ head.script | safe }}
{{ head.style | safe }}
{{ head.title.toString() | safe }}
{{ head.meta.toString() | safe }}
{{ head.link.toString() | safe }}
{{ head.base.toString() | safe }}
{{ head.script.toString() | safe }}
{{ head.style.toString() | safe }}

{% if dist %}
<link rel="stylesheet" href="{{ styleName }}">
Expand Down

0 comments on commit 2ddd7a4

Please sign in to comment.