base.html 802 B

1234567891011121314151617181920212223
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
  6. <meta name="theme-color" content="#2d2d2d">
  7. <meta name="apple-mobile-web-app-capable" content="yes">
  8. <meta name="apple-mobile-web-app-status-bar-style" content="default">
  9. <meta name="apple-mobile-web-app-title" content="kNotes">
  10. <meta name="mobile-web-app-capable" content="yes">
  11. <meta name="application-name" content="kNotes">
  12. <title>{{PAGE_TITLE}}</title>
  13. <link rel="stylesheet" href="css/style.css">
  14. <link rel="icon" type="image/x-icon" href="img/favicon.ico">
  15. </head>
  16. <body>
  17. {{PAGE_CONTENT}}
  18. <script src="js/components.js"></script>
  19. <script src="js/script.js"></script>
  20. {{PAGE_SCRIPT}}
  21. </body>
  22. </html>