standalone.html 390 B

1234567891011121314
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>{{ page.title }} - Quill Rich Text Editor</title>
  5. {% include meta.html %}
  6. {% assign heads = content | split: '<!-- head -->' %}
  7. {{ heads[1] }}
  8. </head>
  9. <body>
  10. {{ content | split: '<!-- head -->' | last | split: '<!-- script -->' | first }}
  11. {% assign scripts = content | split: '<!-- script -->' %}
  12. {{ scripts[1] }}
  13. </body>
  14. </html>