head.html 1.6 KB

123456789101112131415161718192021222324252627282930313233
  1. {{define "head"}}
  2. <head>
  3. <meta charset="UTF-8">
  4. <meta name="renderer" content="webkit">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <link rel="stylesheet" href="{{ .base_path }}assets/[email protected]/antd.min.css">
  8. <link rel="stylesheet" href="{{ .base_path }}assets/[email protected]/theme-chalk/display.css">
  9. <link rel="stylesheet" href="{{ .base_path }}assets/css/custom.css?{{ .cur_ver }}">
  10. <link rel=”icon” type=”image/x-icon” href="{{ .base_path }}assets/favicon.ico">
  11. <link rel="shortcut icon" type="image/x-icon" href="{{ .base_path }}assets/favicon.ico">
  12. <style>
  13. [v-cloak] {
  14. display: none;
  15. }
  16. /* vazirmatn-regular - arabic_latin_latin-ext */
  17. @font-face {
  18. font-display: swap;
  19. font-family: 'Vazirmatn';
  20. font-style: normal;
  21. font-weight: 400;
  22. src: url('{{ .base_path }}assets/Vazirmatn-UI-NL-Regular.woff2') format('woff2');
  23. unicode-range: U+0600-06FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE80-FEFC, U+0030-0039;
  24. }
  25. body {
  26. font-family: -apple-system, BlinkMacSystemFont, 'Vazirmatn', 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB',
  27. 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif, 'Apple Color Emoji',
  28. 'Segoe UI Emoji', 'Segoe UI Symbol';
  29. }
  30. </style>
  31. <title>{{ .host }}-{{ i18n .title}}</title>
  32. </head>
  33. {{end}}