Geen omschrijving

blog.html 914B

1234567891011121314151617181920212223
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UC-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
  7. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  8. <title>{{ template "title" . }}</title>
  9. <link rel="shortcut icon" type="image/png" href="">
  10. <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.95.3/css/materialize.min.css">
  11. {{ template "styles" . }}
  12. </head>
  13. <body>
  14. {{ template "content" . }}
  15. <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
  16. <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.95.3/js/materialize.min.js"></script>
  17. {{ template "scripts" . }}
  18. </body>
  19. </html>