Layout von Websiten mit Bootstrap und Foundation
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

default.html 739B

1234567891011121314151617181920212223
  1. {{!-- This is the base layout for your project, and will be used on every page unless specified. --}}
  2. <!doctype html>
  3. <html class="no-js" lang="en">
  4. <head>
  5. <meta charset="utf-8" />
  6. <meta http-equiv="x-ua-compatible" content="ie=edge">
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8. <title>Einkaufsliste | {{page}}</title>
  9. <link rel="stylesheet" href="{{root}}assets/css/app.css">
  10. </head>
  11. <body>
  12. {{> navigation}}
  13. {{#unlesspage 'index'}}
  14. {{> carousel}}
  15. {{/unlesspage}}
  16. {{!-- Pages you create in the src/pages/ folder are inserted here when the flattened page is created. --}}
  17. {{> body}}
  18. <script src="{{root}}assets/js/app.js"></script>
  19. </body>
  20. </html>