Skip to content

Commit

Permalink
changed {{> body }} to {% body %}
Browse files Browse the repository at this point in the history
  • Loading branch information
onokumus committed Jul 30, 2016
1 parent 0dfbd8e commit d3d29d1
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/templates/layouts/countdown.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
{{/if}}
</head>
<body class="bg-dark lter">
{{>body}}
{% body %}

<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<!--Bootstrap -->
Expand Down
2 changes: 1 addition & 1 deletion src/templates/layouts/default.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
<div id="content">
<div class="outer">
<div class="inner bg-light lter">
{{> body }}
{% body %}
</div>
<!-- /.inner -->
</div>
Expand Down
3 changes: 3 additions & 0 deletions src/templates/layouts/errors.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@
</form>
</div>
<div class="clearfix"></div>
<div class="sr-only">
{% body %}
</div>
<br>
<div class="col-lg-6 col-lg-offset-3">
<div class="btn-group btn-group-justified">
Expand Down
2 changes: 1 addition & 1 deletion src/templates/layouts/fixed.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
<div id="content">
<div class="outer">
<div class="inner">
<p>BODY</p>
{% body %}
</div>
<!-- /.inner -->
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/templates/layouts/login.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
</head>
<body class="login">

{{> body }}
{% body %}


<!--jQuery -->
Expand Down
2 changes: 1 addition & 1 deletion src/templates/layouts/post.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<h2>{{title}}</h2>
<p>Posted on: {{posted}}
{{#markdown}}
{{> body }}
{% body %}
{{/markdown}}
</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/templates/layouts/post.md.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

Posted on: {{ posted }}

{{> body }}
{% body %}

0 comments on commit d3d29d1

Please sign in to comment.