Skip to content

Commit 2a869e3

Browse files
layoutContent -> content
1 parent 6c710a6 commit 2a869e3

File tree

14 files changed

+14
-14
lines changed

14 files changed

+14
-14
lines changed

_includes/components/head.njk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@
3535
{% endfor %}
3636
{% endif %}
3737

38-
<meta name="generator" content="Eleventy">
38+
<meta name="generator" content="{{ eleventy.generator }}">
3939
</head>

_includes/layouts/base.njk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
</header>
2020

2121
<main>
22-
{{ layoutContent | safe }}
22+
{{ content | safe }}
2323
</main>
2424

2525
<footer>

_includes/layouts/blog.njk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ permalink: /blog/index.html
55
---
66
<h1>{{ title | widont }}</h1>
77

8-
{{ layoutContent | safe }}
8+
{{ content | safe }}
99

1010
{% set postslist = collections.posts %}
1111
{% include "components/postslist.njk" %}

_includes/layouts/contact.njk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ section: contact
44
---
55
<h1>{{ title | widont }}</h1>
66

7-
{{ layoutContent | safe }}
7+
{{ content | safe }}
88

99
{% from "macros.njk" import label, field, textarea, button %}
1010

_includes/layouts/dashboard-table.njk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: layouts/base.njk
33
---
44
<h1>{{ title | widont }}</h1>
55

6-
{{ layoutContent | safe }}
6+
{{ content | safe }}
77

88
<table class="dashboard">
99
<thead>

_includes/layouts/dashboard.njk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ layout: layouts/base.njk
55

66
<h1>{{ title | widont }}</h1>
77

8-
{{ layoutContent | safe }}
8+
{{ content | safe }}
99

1010
<div class="dashboard">
1111

_includes/layouts/events.njk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ section: events
55

66
<h1>{{ title | widont }}</h1>
77

8-
{{ layoutContent | safe }}
8+
{{ content | safe }}
99

1010
{% from "macros.njk" import event %}
1111

_includes/layouts/home.njk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: layouts/base.njk
33
section: home
44
---
55

6-
{{ layoutContent | safe }}
6+
{{ content | safe }}
77

88
{% from "macros.njk" import event %}
99

_includes/layouts/offline.njk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ section: offline
55

66
<h1>{{ title | widont }}</h1>
77

8-
{{ layoutContent | safe }}
8+
{{ content | safe }}
99

1010
<template style="display:none" id="cached-link" data-proofer-ignore>
1111
<article class="entry entry--excerpt entry--posts">

_includes/layouts/page.njk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ section: page
44
---
55
<h1>{{ title | widont }}</h1>
66

7-
{{ layoutContent | safe }}
7+
{{ content | safe }}

0 commit comments

Comments
 (0)