Skip to content

Commit d3d29d1

Browse files
committed
changed {{> body }} to {% body %}
1 parent 0dfbd8e commit d3d29d1

7 files changed

Lines changed: 9 additions & 6 deletions

File tree

src/templates/layouts/countdown.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
{{/if}}
3333
</head>
3434
<body class="bg-dark lter">
35-
{{>body}}
35+
{% body %}
3636

3737
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
3838
<!--Bootstrap -->

src/templates/layouts/default.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
<div id="content">
8989
<div class="outer">
9090
<div class="inner bg-light lter">
91-
{{> body }}
91+
{% body %}
9292
</div>
9393
<!-- /.inner -->
9494
</div>

src/templates/layouts/errors.hbs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@
4545
</form>
4646
</div>
4747
<div class="clearfix"></div>
48+
<div class="sr-only">
49+
{% body %}
50+
</div>
4851
<br>
4952
<div class="col-lg-6 col-lg-offset-3">
5053
<div class="btn-group btn-group-justified">

src/templates/layouts/fixed.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
<div id="content">
9494
<div class="outer">
9595
<div class="inner">
96-
<p>BODY</p>
96+
{% body %}
9797
</div>
9898
<!-- /.inner -->
9999
</div>

src/templates/layouts/login.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
</head>
3030
<body class="login">
3131

32-
{{> body }}
32+
{% body %}
3333

3434

3535
<!--jQuery -->

src/templates/layouts/post.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<h2>{{title}}</h2>
1515
<p>Posted on: {{posted}}
1616
{{#markdown}}
17-
{{> body }}
17+
{% body %}
1818
{{/markdown}}
1919
</p>
2020
</div>

src/templates/layouts/post.md.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
Posted on: {{ posted }}
66

7-
{{> body }}
7+
{% body %}

0 commit comments

Comments
 (0)