This repository has been archived by the owner on Nov 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
98c7945
commit b5616b6
Showing
281 changed files
with
2,262 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<foo data-user="{"name":"tobi"}"></foo> | ||
<foo data-items="[1,2,3]"></foo> | ||
<foo data-username="tobi"></foo> | ||
<foo data-escaped="{"message":"Let's rock!"}"></foo> | ||
<foo data-ampersand="{"message":"a quote: &quot; this & that"}"></foo> | ||
<foo data-epoc="1970-01-01T00:00:00.000Z"></foo> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
- var user = { name: 'tobi' } | ||
foo(data-user=user) | ||
foo(data-items=[1,2,3]) | ||
foo(data-username='tobi') | ||
foo(data-escaped={message: "Let's rock!"}) | ||
foo(data-ampersand={message: "a quote: " this & that"}) | ||
foo(data-epoc=new Date(0)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<div :my-var="model"></div><span v-for="item in items" :key="item.id" :value="item.name"></span><span v-for="item in items" :key="item.id" :value="item.name"></span><a :link="goHere" value="static" :my-value="dynamic" @click="onClick()" :another="more">Click Me!</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
//- Tests for using a colon-prefexed attribute (typical when using short-cut for Vue.js `v-bind`) | ||
div(:my-var="model") | ||
span(v-for="item in items" :key="item.id" :value="item.name") | ||
span( | ||
v-for="item in items" | ||
:key="item.id" | ||
:value="item.name" | ||
) | ||
a(:link="goHere" value="static" :my-value="dynamic" @click="onClick()" :another="more") Click Me! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<a href="/contact">contact</a><a class="button" href="/save">save</a><a foo="foo" bar="bar" baz="baz"></a><a foo="foo, bar, baz" bar="1"></a><a foo="((foo))" bar="1"></a> | ||
<select> | ||
<option value="foo" selected="selected">Foo</option> | ||
<option selected="selected" value="bar">Bar</option> | ||
</select><a foo="class:"></a> | ||
<input pattern="\S+"/><a href="/contact">contact</a><a class="button" href="/save">save</a><a foo="foo" bar="bar" baz="baz"></a><a foo="foo, bar, baz" bar="1"></a><a foo="((foo))" bar="1"></a> | ||
<select> | ||
<option value="foo" selected="selected">Foo</option> | ||
<option selected="selected" value="bar">Bar</option> | ||
</select><a foo="class:"></a> | ||
<input pattern="\S+"/> | ||
<foo terse="true"></foo> | ||
<foo date="1970-01-01T00:00:00.000Z"></foo> | ||
<foo abc="abc" def="def"></foo> | ||
<foo abc="abc" def="def"></foo> | ||
<foo abc="abc" def="def"></foo> | ||
<foo abc="abc" def="def"></foo> | ||
<foo abc="abc" def="def"></foo> | ||
<foo abc="abc" def="def"></foo> | ||
<div foo="bar" bar="<baz>"></div><a foo="foo" bar="bar"></a><a foo="foo" bar="bar"></a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<a class="button" href="/user/5"></a><a class="button" href="/user/5"></a> | ||
<meta key="answer" value="42"/><a class="class1 class2"></a><a class="tag-class class1 class2"></a><a class="button" href="/user/5"></a><a class="button" href="/user/5"></a> | ||
<meta key="answer" value="42"/><a class="class1 class2"></a><a class="tag-class class1 class2"></a> | ||
<div id="5" foo="bar"></div> | ||
<div baz="baz"></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
- var id = 5 | ||
- function answer() { return 42; } | ||
a(href='/user/' + id, class='button') | ||
a(href = '/user/' + id, class = 'button') | ||
meta(key='answer', value=answer()) | ||
a(class = ['class1', 'class2']) | ||
a.tag-class(class = ['class1', 'class2']) | ||
|
||
a(href='/user/' + id class='button') | ||
a(href = '/user/' + id class = 'button') | ||
meta(key='answer' value=answer()) | ||
a(class = ['class1', 'class2']) | ||
a.tag-class(class = ['class1', 'class2']) | ||
|
||
div(id=id)&attributes({foo: 'bar'}) | ||
- var bar = null | ||
div(foo=null bar=bar)&attributes({baz: 'baz'}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
a(href='/contact') contact | ||
a(href='/save').button save | ||
a(foo, bar, baz) | ||
a(foo='foo, bar, baz', bar=1) | ||
a(foo='((foo))', bar= (1) ? 1 : 0 ) | ||
select | ||
option(value='foo', selected) Foo | ||
option(selected, value='bar') Bar | ||
a(foo="class:") | ||
input(pattern='\\S+') | ||
|
||
a(href='/contact') contact | ||
a(href='/save').button save | ||
a(foo bar baz) | ||
a(foo='foo, bar, baz' bar=1) | ||
a(foo='((foo))' bar= (1) ? 1 : 0 ) | ||
select | ||
option(value='foo' selected) Foo | ||
option(selected value='bar') Bar | ||
a(foo="class:") | ||
input(pattern='\\S+') | ||
foo(terse="true") | ||
foo(date=new Date(0)) | ||
|
||
foo(abc | ||
,def) | ||
foo(abc, | ||
def) | ||
foo(abc, | ||
def) | ||
foo(abc | ||
,def) | ||
foo(abc | ||
def) | ||
foo(abc | ||
def) | ||
|
||
- var attrs = {foo: 'bar', bar: '<baz>'} | ||
|
||
div&attributes(attrs) | ||
|
||
a(foo='foo' "bar"="bar") | ||
a(foo='foo' 'bar'='bar') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<script type="text/x-template"> | ||
<div id="user-<%= user.id %>"> | ||
<h1><%= user.title %></h1> | ||
</div> | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
script(type='text/x-template') | ||
div(id!='user-<%= user.id %>') | ||
h1 <%= user.title %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
block content |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
mixin test() | ||
.test&attributes(attributes) | ||
|
||
+test() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
doctype html | ||
html | ||
head | ||
title Default title | ||
body | ||
block body | ||
.container | ||
block content |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
|
||
extends window.pug | ||
|
||
block window-content | ||
.dialog | ||
block content |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
block test | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<script> | ||
console.log("foo\nbar") | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
extends empty-block.pug | ||
|
||
block test | ||
div test1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
extends empty-block.pug | ||
|
||
block test | ||
div test2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
extends /auxiliary/layout.pug | ||
|
||
block content | ||
include /auxiliary/include-from-root.pug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
extends ../../cases/auxiliary/layout | ||
|
||
block content | ||
include ../../cases/auxiliary/include-from-root |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
html | ||
head | ||
style(type="text/css") | ||
:less | ||
@pad: 15px; | ||
body { | ||
padding: @pad; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
var STRING_SUBSTITUTIONS = { | ||
// table of character substitutions | ||
"\t": "\\t", | ||
"\r": "\\r", | ||
"\n": "\\n", | ||
'"': '\\"', | ||
"\\": "\\\\", | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
h1 hello |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
mixin article() | ||
article | ||
block | ||
|
||
html | ||
head | ||
title My Application | ||
block head | ||
body | ||
+article | ||
block content |
2 changes: 2 additions & 0 deletions
2
tests/cases/auxiliary/inheritance.extend.recursive-grand-grandparent.pug
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
h1 grand-grandparent | ||
block grand-grandparent |
6 changes: 6 additions & 0 deletions
6
tests/cases/auxiliary/inheritance.extend.recursive-grandparent.pug
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
extends inheritance.extend.recursive-grand-grandparent.pug | ||
|
||
block grand-grandparent | ||
h2 grandparent | ||
block grandparent | ||
|
5 changes: 5 additions & 0 deletions
5
tests/cases/auxiliary/inheritance.extend.recursive-parent.pug
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
extends inheritance.extend.recursive-grandparent.pug | ||
|
||
block grandparent | ||
h3 parent | ||
block parent |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
html | ||
head | ||
title My Application | ||
block head | ||
body | ||
block content | ||
include window.pug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
html | ||
head | ||
title My Application | ||
block head | ||
body | ||
block content |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
mixin slide | ||
section.slide | ||
block |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
|
||
mixin foo() | ||
p bar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.pet | ||
h1 {{name}} | ||
p {{name}} is a {{species}} that is {{age}} old |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<p>:)</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
|
||
.window | ||
a(href='#').close Close | ||
block window-content |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
html | ||
head | ||
title | ||
body | ||
h1 Page | ||
#content | ||
#content-wrapper | ||
yield | ||
#footer | ||
stuff |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<html> | ||
<body> | ||
<h1>Title</h1> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
html | ||
body | ||
h1 Title |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<ul> | ||
<li>foo</li> | ||
<li>bar</li> | ||
<li>baz</li> | ||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
|
||
|
||
ul | ||
li foo | ||
|
||
li bar | ||
|
||
li baz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
|
||
<li>Uno</li> | ||
<li>Dos</li> | ||
<li>Tres</li> | ||
<li>Cuatro</li> | ||
<li>Cinco</li> | ||
<li>Seis</li> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
- | ||
list = ["uno", "dos", "tres", | ||
"cuatro", "cinco", "seis"]; | ||
//- Without a block, the element is accepted and no code is generated | ||
- | ||
each item in list | ||
- | ||
string = item.charAt(0) | ||
.toUpperCase() + | ||
item.slice(1); | ||
li= string |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<ul> | ||
<li><a href="#">foo</a></li> | ||
<li><a href="#">bar</a></li> | ||
</ul> | ||
<p>baz</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
ul | ||
li: a(href='#') foo | ||
li: a(href='#') bar | ||
|
||
p baz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<ul> | ||
<li class="list-item"> | ||
<div class="foo"> | ||
<div id="bar">baz</div> | ||
</div> | ||
</li> | ||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
ul | ||
li.list-item: .foo: #bar baz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<figure> | ||
<blockquote>Try to define yourself by what you do, and you’ll burnout every time. You are. That is enough. I rest in that.</blockquote> | ||
<figcaption>from @thefray at 1:43pm on May 10</figcaption> | ||
</figure> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
figure | ||
blockquote | ||
| Try to define yourself by what you do, and you’ll burnout every time. You are. That is enough. I rest in that. | ||
figcaption from @thefray at 1:43pm on May 10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Default title</title> | ||
</head> | ||
<body> | ||
<h1>Page 2</h1> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
extends ./auxiliary/blocks-in-blocks-layout.pug | ||
|
||
block body | ||
h1 Page 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<p>ajax contents</p> |
Oops, something went wrong.