1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-08-09 07:25:23 +02:00
This commit is contained in:
Harvey Kandola 2016-06-17 13:28:10 -07:00
parent 417c0c02a8
commit b5c137eb58
2 changed files with 11 additions and 10 deletions

View file

@ -2,15 +2,14 @@
"indent_size": 4, "indent_size": 4,
"indent_char": " ", "indent_char": " ",
"preserve_newlines": true, "preserve_newlines": true,
"css": "css": {
{
"indent_size": 4, "indent_size": 4,
"allowed_file_extensions": ["css", "scss", "sass", "less"] "allowed_file_extensions": ["css", "scss", "sass", "less"]
}, },
"html": {
"html": "allowed_file_extensions": ["htm", "html", "xhtml", "shtml", "xml", "svg", "hbs"]
{ },
"allowed_file_extensions": ["htm", "html", "xhtml", "shtml", "xml", "svg", ".hbs"] "js": {
"break_chained_methods": false
} }
} }

View file

@ -1,5 +1,6 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
{{content-for 'head'}} {{content-for 'head'}}
<meta charset="utf-8"> <meta charset="utf-8">
@ -13,9 +14,9 @@
<link rel="shortcut icon" href="/favicon.ico?v=1.1" /> <link rel="shortcut icon" href="/favicon.ico?v=1.1" />
<link rel="icon" type="image/png" href="/favicon-32x32.png?v=1.1" sizes="32x32" /> <link rel="icon" type="image/png" href="/favicon-32x32.png?v=1.1" sizes="32x32" />
<link rel="stylesheet" href="assets/vendor.css"> <link rel="stylesheet" href="assets/vendor.css">
<link rel="stylesheet" href="assets/documize.css"> <link rel="stylesheet" href="assets/documize.css"> {{content-for 'head-footer'}}
{{content-for 'head-footer'}}
</head> </head>
<body> <body>
{{content-for 'body'}} {{content-for 'body'}}
<script src="assets/vendor.js"></script> <script src="assets/vendor.js"></script>
@ -27,4 +28,5 @@
<script src="codemirror/addon/runmode/colorize.js"></script> <script src="codemirror/addon/runmode/colorize.js"></script>
{{content-for 'body-footer'}} {{content-for 'body-footer'}}
</body> </body>
</html>
</html>