header.tx 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. <!doctype html>
  2. <html dir="<: $dir :>" lang="<: $lang :>">
  3. <head>
  4. <title><: $title :></title>
  5. <meta charset="utf-8" />
  6. <link rel="icon" type="image/vnd.microsoft.icon" href="<: $theme_dir :>/img/icon/favicon.ico" />
  7. : if ($meta_desc) {
  8. <meta name="description" content="<: $meta_desc :>"/>
  9. : }
  10. : if ($default_tags) {
  11. <meta name="tags" content="<: $default_tags :>" />
  12. : }
  13. : if ($meta_tags) {
  14. <: $meta_tags | mark_raw :>
  15. : }
  16. <meta name="viewport" content="width=device-width">
  17. <link rel="stylesheet" type="text/css" href="/styles/structure.css" />
  18. <link rel="stylesheet" type="text/css" href="/styles/screen.css" media="screen" />
  19. <link rel="stylesheet" type="text/css" href="/styles/print.css" media="print" />
  20. : if ($embed) {
  21. <base target="_blank" />
  22. <link rel="stylesheet" type="text/css" href="/styles/embed.css" media="screen" />
  23. : }
  24. <!-- Stylesheets !-->
  25. : for $stylesheets -> $stylesheet {
  26. <link rel="stylesheet" type="text/css" href="<: $stylesheet :>" media="screen" />
  27. : }
  28. : for $scripts -> $script {
  29. <script type="text/javascript" src="<: $script :>"></script>
  30. : }
  31. </head>
  32. <body>