14 lines
390 B
HTML
14 lines
390 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<title>{{ page.title }} - Quill Rich Text Editor</title>
|
||
|
{% include meta.html %}
|
||
|
{% assign heads = content | split: '<!-- head -->' %}
|
||
|
{{ heads[1] }}
|
||
|
</head>
|
||
|
<body>
|
||
|
{{ content | split: '<!-- head -->' | last | split: '<!-- script -->' | first }}
|
||
|
{% assign scripts = content | split: '<!-- script -->' %}
|
||
|
{{ scripts[1] }}
|
||
|
</body>
|
||
|
</html>
|