Skip to content

Commit

Permalink
Use triple { in mustache template
Browse files Browse the repository at this point in the history
  • Loading branch information
razor-x committed Nov 30, 2018
1 parent eef9201 commit 4854fa2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions public/index.html.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>{{ version }} Immutable Web App</title>
<title>{{{ version }}} Immutable Web App</title>
<meta name="description" content="Immutable web app.">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="{{ root }}/index.css">
<link rel="stylesheet" href="{{{ root }}}/index.css">
</head>
<body>
<div id="root"></div>
<script>{{{ configScript }}}</script>
<script src="{{ root }}/index.js"></script>
<script src="{{{ root }}}/index.js"></script>
</body>
</html>

0 comments on commit 4854fa2

Please sign in to comment.