Browse Source

add apple-touch-icon (#10006)

fixes: https://github.com/go-gitea/gitea/issues/10003

Co-authored-by: zeripath <art27@cantab.net>
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
tags/v1.10.5
silverwind 4 years ago
parent
commit
03cb168127
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      templates/base/head.tmpl

+ 2
- 1
templates/base/head.tmpl View File

@@ -83,7 +83,8 @@
for the JavaScript code in this page.
*/`}}
</script>
<link rel="shortcut icon" href="{{StaticUrlPrefix}}/img/favicon.png" />
<link rel="shortcut icon" href="{{StaticUrlPrefix}}/img/favicon.png">
<link rel="apple-touch-icon" href="{{StaticUrlPrefix}}/img/favicon.png">
<link rel="mask-icon" href="{{StaticUrlPrefix}}/img/gitea-safari.svg" color="#609926">
<link rel="stylesheet" href="{{StaticUrlPrefix}}/vendor/assets/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="{{StaticUrlPrefix}}/vendor/assets/octicons/octicons.min.css">

Loading…
Cancel
Save