header.tx 1.1 KB

12345678910111213141516171819202122232425262728
  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 ($indexable) {
  8. : include "meta.tx";
  9. : }
  10. <meta name="viewport" content="width=device-width">
  11. <link rel="stylesheet" type="text/css" href="/styles/structure.css" />
  12. <link rel="stylesheet" type="text/css" href="/styles/screen.css" media="screen" />
  13. <link rel="stylesheet" type="text/css" href="/styles/print.css" media="print" />
  14. : if ($embed) {
  15. <base target="_blank" />
  16. <link rel="stylesheet" type="text/css" href="/styles/embed.css" media="screen" />
  17. : }
  18. <!-- Stylesheets !-->
  19. : for $stylesheets -> $stylesheet {
  20. <link rel="stylesheet" type="text/css" href="<: $stylesheet :>" media="screen" />
  21. : }
  22. : for $scripts -> $script {
  23. <script type="text/javascript" src="<: $script :>"></script>
  24. : }
  25. </head>
  26. <body>