header.tx 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  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. <link rel="stylesheet" type="text/css" href="/styles/obsidian.min.css" />
  21. : if ($embed) {
  22. <base target="_blank" />
  23. <link rel="stylesheet" type="text/css" href="/styles/embed.css" media="screen" />
  24. : }
  25. <!-- Stylesheets !-->
  26. : for $stylesheets -> $stylesheet {
  27. <link rel="stylesheet" type="text/css" href="<: $stylesheet :>" media="screen" />
  28. : }
  29. : for $scripts -> $script {
  30. <script type="text/javascript" src="<: $script :>"></script>
  31. : }
  32. </head>
  33. <body>