So siehts ganz gut aus !

This commit is contained in:
2019-04-03 17:44:16 +02:00
parent 3695b33c83
commit 0fe884c90a
6758 changed files with 530485 additions and 65 deletions
+5
View File
@@ -0,0 +1,5 @@
extends layout.pug
append head
script(src='app.js')
+7
View File
@@ -0,0 +1,7 @@
html
block head
script(src='vendor/jquery.js')
script(src='vendor/caustic.js')
body
block body
+6
View File
@@ -0,0 +1,6 @@
extends app-layout.pug
append head
script(src='foo.js')
script(src='bar.js')
+5
View File
@@ -0,0 +1,5 @@
extends layout
block append head
script(src='app.js')
+7
View File
@@ -0,0 +1,7 @@
html
block head
script(src='vendor/jquery.js')
script(src='vendor/caustic.js')
body
block body
+9
View File
@@ -0,0 +1,9 @@
<html>
<script src="vendor/jquery.js"></script>
<script src="vendor/caustic.js"></script>
<script src="app.js"></script>
<script src="foo.js"></script>
<script src="bar.js"></script>
<body>
</body>
</html>
+6
View File
@@ -0,0 +1,6 @@
extends app-layout
block append head
script(src='foo.js')
script(src='bar.js')
+1
View File
@@ -0,0 +1 @@
include include.locals.error.pug
+1
View File
@@ -0,0 +1 @@
include include.syntax.error.pug
+1
View File
@@ -0,0 +1 @@
extends layout.locals.error.pug
+1
View File
@@ -0,0 +1 @@
extends layout.syntax.error.pug
@@ -0,0 +1 @@
extends compile.with.include.locals.error.pug
@@ -0,0 +1 @@
extends compile.with.include.syntax.error.pug
+1
View File
@@ -0,0 +1 @@
div(attr='val')(foo='bar')
+2
View File
@@ -0,0 +1,2 @@
= foo()
+2
View File
@@ -0,0 +1,2 @@
= foo(
+7
View File
@@ -0,0 +1,7 @@
extends ./layout.pug
block title
title My Article
block contents
// oops, that's not a block
+2
View File
@@ -0,0 +1,2 @@
.included-layout
block include-body
+4
View File
@@ -0,0 +1,4 @@
extends ./include-layout.pug
block include-body
.include-body
+7
View File
@@ -0,0 +1,7 @@
extends ./layout.pug
block body-a
.body-a
block body-b
.body-b
include ./include.pug
+3
View File
@@ -0,0 +1,3 @@
.layout-body
block body-a
block body-b
+2
View File
@@ -0,0 +1,2 @@
= foo()
+6
View File
@@ -0,0 +1,6 @@
doctype html
html
head
block title
body
block body
+2
View File
@@ -0,0 +1,2 @@
= foo(
+5
View File
@@ -0,0 +1,5 @@
html
body
= foo.length
block content
+5
View File
@@ -0,0 +1,5 @@
mixin bang
+foo
mixin foo
p bar
+2
View File
@@ -0,0 +1,2 @@
mixin mixin-with-error(foo)
- foo.length
@@ -0,0 +1,5 @@
extends root.pug
block content
.content
| Defined content
+5
View File
@@ -0,0 +1,5 @@
block content
| default content
block head
script(src='/app.js')
+32
View File
@@ -0,0 +1,32 @@
.data
ol.sortable#contents
each item in report
if (!item.parent)
div
li.chapter(data-ref= item.id)
a(href='/admin/report/detail/' + item.id)
= item.name
- var chp = item.id
ol.sortable
each item in report
if (item.parent === chp && item.type === 'section')
div
li.section(data-ref= item.id)
a(href='/admin/report/detail/' + item.id)
= item.name
- var sec = item.id
ol.sortable
each item in report
if (item.parent === sec && item.type === 'page')
div
li.page(data-ref= item.id)
a(href='/admin/report/detail/' + item.id)
= item.name
- var page = item.id
ol.sortable
each item in report
if (item.parent === page && item.type === 'subpage')
div
li.subpage(data-ref= item.id)
a(href='/admin/report/detail/' + item.id)
= item.name
+5
View File
@@ -0,0 +1,5 @@
extends layout.pug
prepend head
script(src='app.js')
+7
View File
@@ -0,0 +1,7 @@
html
block head
script(src='vendor/jquery.js')
script(src='vendor/caustic.js')
body
block body
+9
View File
@@ -0,0 +1,9 @@
<html>
<script src="foo.js"></script>
<script src="bar.js"></script>
<script src="app.js"></script>
<script src="vendor/jquery.js"></script>
<script src="vendor/caustic.js"></script>
<body>
</body>
</html>
+6
View File
@@ -0,0 +1,6 @@
extends app-layout.pug
prepend head
script(src='foo.js')
script(src='bar.js')
+5
View File
@@ -0,0 +1,5 @@
extends layout.pug
block prepend head
script(src='app.js')
+7
View File
@@ -0,0 +1,7 @@
html
block head
script(src='vendor/jquery.js')
script(src='vendor/caustic.js')
body
block body
+9
View File
@@ -0,0 +1,9 @@
<html>
<script src="foo.js"></script>
<script src="bar.js"></script>
<script src="app.js"></script>
<script src="vendor/jquery.js"></script>
<script src="vendor/caustic.js"></script>
<body>
</body>
</html>
+6
View File
@@ -0,0 +1,6 @@
extends app-layout.pug
block prepend head
script(src='foo.js')
script(src='bar.js')
+1
View File
@@ -0,0 +1 @@
-foo()
+3
View File
@@ -0,0 +1,3 @@
extends layout.with.runtime.error.pug
block content
| some content
+3
View File
@@ -0,0 +1,3 @@
include mixin.error.pug
+mixin-with-error(null)
+2
View File
@@ -0,0 +1,2 @@
script(src='/jquery.js')
script(src='/caustic.js')