This commit is contained in:
tatianamac
2019-11-26 14:50:43 -08:00
parent 8a55660ed0
commit 6d5445ecc5
13894 changed files with 2233957 additions and 0 deletions

View File

@@ -0,0 +1 @@
<p>{% block content %}This is a parent.{% endblock %}</p>

View File

View File

@@ -0,0 +1,10 @@
---
keylayout: valuelayout
postRank: 4
daysPosted: 152
yearsPosted: 0.4
---
<div id="layout">
<%- content %>
</div>

View File

@@ -0,0 +1,10 @@
---
keylayout: valuelayout
postRank: 4
daysPosted: 152
yearsPosted: 0.4
---
<div id="layout">
<%- layoutContent %>
</div>

View File

@@ -0,0 +1,10 @@
---
keylayout: valuelayout
postRank: 4
daysPosted: 152
yearsPosted: 0.4
---
<div id="layout">
<%- _layoutContent %>
</div>

View File

@@ -0,0 +1 @@
{% macro label(text) %}<label>{{ text }}</label>{% endmacro %}

View File

@@ -0,0 +1 @@
This is an include. {{ myVariable }}

View File

@@ -0,0 +1 @@
akdlsjafkljdskl

View File

@@ -0,0 +1 @@
This is an include.

View File

@@ -0,0 +1 @@
This is an include.

View File

@@ -0,0 +1 @@
This is an include.

View File

@@ -0,0 +1 @@
This is an include.

View File

@@ -0,0 +1 @@
This is an include.

View File

@@ -0,0 +1 @@
This is an include.

View File

@@ -0,0 +1 @@
Nunjabusiness

View File

@@ -0,0 +1 @@
span This is an include.

View File

@@ -0,0 +1 @@
This is an <%= name %>.

View File

@@ -0,0 +1 @@
This is a {{name}}.

View File

@@ -0,0 +1 @@
This is a {{name}}.

View File

@@ -0,0 +1 @@
span This is #{name}.

View File

@@ -0,0 +1,9 @@
---
layout: layout-b
key1: value1-a
upstream: value2-a
---
<div id="layout-a">
<%- content %>
</div>

View File

@@ -0,0 +1,9 @@
---
key1: value1-b
upstream: value2-b
daysPosted: 154
---
<div id="layout-b">
<%- content %>
</div>

View File

@@ -0,0 +1,3 @@
html
body
block content

View File

@@ -0,0 +1,7 @@
---
keylayout: valuelayout
---
<div id="layout">
{{ content }}
</div>

View File

@@ -0,0 +1 @@
<div>{{ content }}</div>

View File

@@ -0,0 +1,4 @@
---
layoutkey: layoutvalue
---
<div id="{{layoutkey}}">{{ content | safe }}</div>

View File

@@ -0,0 +1,6 @@
---
layoutkey: layoutvalue
---
# Layout header
<div id="{{layoutkey}}">{{ content | safe }}</div>

View File

@@ -0,0 +1,6 @@
{% for foo in pagination.items -%}
{{ foo.data.title }}
{% endfor -%}
{% for bar in collections.bars -%}
{{ bar.data.title }}
{% endfor -%}

View File

@@ -0,0 +1,5 @@
---
inherits: a
layout: layouts/layout-inherit-b.njk
---
{{content | default("this is bad")}} {{inherits}}

View File

@@ -0,0 +1,5 @@
---
inherits: a
layout: layouts/layout-inherit-b.njk
---
{{content}} {{inherits}}

View File

@@ -0,0 +1,6 @@
---
inherits: b
secondinherits: b
layout: layouts/layout-inherit-c.njk
---
{{ content | safe }} {{secondinherits}}

View File

@@ -0,0 +1,6 @@
---
inherits: c
secondinherits: c
thirdinherits: c
---
{{ content | safe }} {{inherits}} {{thirdinherits}}

View File

View File

@@ -0,0 +1,5 @@
---
upstream: Inherited
---
{{ content | safe }}

View File

View File

View File

@@ -0,0 +1 @@
<div id="locallayout">{{ content | safe }}</div>

View File

@@ -0,0 +1,4 @@
---
permalink: "{{ page.fileSlug }}/index.html"
---
Wrapper:{{ layoutContent | safe }}

View File

@@ -0,0 +1,4 @@
---
permalink: test/<%= page.fileSlug %>/
---
<%- content %>

View File

@@ -0,0 +1,4 @@
---
permalink: hello/index.html
---
<%- content %>

View File

@@ -0,0 +1 @@
{% assign test = 2 %}{{ test }}

View File

@@ -0,0 +1 @@
This is an include.

View File

@@ -0,0 +1 @@
This is an include.

View File

@@ -0,0 +1 @@
This is an include.

View File

@@ -0,0 +1 @@
This is an include.

View File

@@ -0,0 +1 @@
Nunjabusiness2

View File

@@ -0,0 +1 @@
/* THIS IS A COMMENT */ alert("Issue #398");