head.html 1.2 KB

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