default.html 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  6. <title>{{ page.title }} </title>
  7. <meta name="viewport" content="width=device-width">
  8. <link rel="icon" type="image/png" href="/favicon.png" />
  9. <link rel="stylesheet" href="{{page.prefix}}/css/main.css">
  10. <link rel="stylesheet" href="{{page.prefix}}/css/tablet.css" type="text/css" media="screen and (min-width:651px) and (max-width: 1024px), screen and (min-device-width: 768px) and (max-device-width: 1024px)" />
  11. <link rel="stylesheet" href="{{page.prefix}}/css/mobile.css" type="text/css" media="handheld, screen and (max-width: 650px), screen and (max-device-width: 480px)" />
  12. </head>
  13. <body>
  14. <div id="wrapper">
  15. <div id="main">
  16. <h1 class="title">{{ page.title }}</h1>
  17. {{ content }}
  18. </div>
  19. </div>
  20. <div id="footer">
  21. <a href="{{page.prefix}}/">&lt;&lt;</a>
  22. </div>
  23. </body>
  24. </html>