1
0

head.html 1.3 KB

1234567891011121314151617181920212223242526272829303132
  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/ant-design-vue/antd.min.css">
  8. <link rel="stylesheet" href="{{ .base_path }}assets/element-ui/theme-chalk/display.css">
  9. <link rel="stylesheet" href="{{ .base_path }}assets/css/custom.min.css?{{ .cur_ver }}">
  10. <style>
  11. [v-cloak] {
  12. display: none;
  13. }
  14. /* vazirmatn-regular - arabic_latin_latin-ext */
  15. @font-face {
  16. font-display: swap;
  17. font-family: 'Vazirmatn';
  18. font-style: normal;
  19. font-weight: 400;
  20. src: url('{{ .base_path }}assets/Vazirmatn-UI-NL-Regular.woff2') format('woff2');
  21. unicode-range: U+0600-06FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE80-FEFC, U+0030-0039;
  22. }
  23. body {
  24. font-family: -apple-system, BlinkMacSystemFont, 'Vazirmatn', 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB',
  25. 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif, 'Apple Color Emoji',
  26. 'Segoe UI Emoji', 'Segoe UI Symbol';
  27. }
  28. </style>
  29. <title>{{ .host }}-{{ i18n .title}}</title>
  30. </head>
  31. <div id="message"></div>
  32. {{end}}