header.tx 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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/svg+xml" href="<: $theme_dir :>/img/icon/favicon.svg">
  7. <link rel="apple-touch-icon" href="<: $theme_dir :>/img/icon/favicon-180.png">
  8. <link rel="manifest" href="/api/webmanifest">
  9. : if ($meta_desc) {
  10. <meta name="description" content="<: $meta_desc :>"/>
  11. : }
  12. : if ($default_tags) {
  13. <meta name="tags" content="<: $default_tags :>" />
  14. : }
  15. : if ($meta_tags) {
  16. <: $meta_tags | mark_raw :>
  17. : }
  18. <meta name="viewport" content="width=device-width">
  19. <link rel="stylesheet" type="text/css" href="/styles/structure.css" />
  20. <link rel="stylesheet" type="text/css" href="/styles/screen.css" media="screen" />
  21. <link rel="stylesheet" type="text/css" href="/styles/print.css" media="print" />
  22. <link rel="stylesheet" type="text/css" href="/styles/obsidian.min.css" />
  23. : if ($embed) {
  24. <base target="_blank" />
  25. <link rel="stylesheet" type="text/css" href="/styles/embed.css" media="screen" />
  26. : }
  27. <!-- Stylesheets !-->
  28. : for $stylesheets -> $stylesheet {
  29. <link rel="stylesheet" type="text/css" href="<: $stylesheet :>" media="screen" />
  30. : }
  31. : for $scripts -> $script {
  32. <script type="text/javascript" src="<: $script :>"></script>
  33. : }
  34. </head>
  35. <body>