diff options
author | Lauris BH <lauris@nix.lv> | 2017-07-28 08:51:20 +0300 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2017-07-28 13:51:20 +0800 |
commit | 60d7e56c69abfd89607056f5e459e71dbe571b97 (patch) | |
tree | 90ec758cd1c0de2fa2d15e8c9407b3d87a3bc9c1 /templates/repo | |
parent | 04c4028aeab8f56df8626ffc9f2e134e59f30582 (diff) | |
download | gitea-60d7e56c69abfd89607056f5e459e71dbe571b97.tar.gz gitea-60d7e56c69abfd89607056f5e459e71dbe571b97.zip |
Add task to generate images from SVG and change to new logo (#2194)
* Add makefile task to generate images from SVG and change to new logo
* use absolute path on generate-images
Diffstat (limited to 'templates/repo')
-rw-r--r-- | templates/repo/settings/hook_list.tmpl | 2 | ||||
-rw-r--r-- | templates/repo/settings/hook_new.tmpl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/repo/settings/hook_list.tmpl b/templates/repo/settings/hook_list.tmpl index aba948b952..45ef70ecad 100644 --- a/templates/repo/settings/hook_list.tmpl +++ b/templates/repo/settings/hook_list.tmpl @@ -6,7 +6,7 @@ <div class="ui blue tiny button">{{.i18n.Tr "repo.settings.add_webhook"}}</div> <div class="menu"> <a class="item" href="{{.BaseLink}}/settings/hooks/gitea/new"> - <img class="img-10" src="{{AppSubUrl}}/img/favicon.png">Gitea + <img class="img-10" src="{{AppSubUrl}}/img/gitea-sm.png">Gitea </a> <a class="item" href="{{.BaseLink}}/settings/hooks/gogs/new"> <img class="img-10" src="{{AppSubUrl}}/img/gogs.ico">Gogs diff --git a/templates/repo/settings/hook_new.tmpl b/templates/repo/settings/hook_new.tmpl index 48322e47f8..cbb52680cd 100644 --- a/templates/repo/settings/hook_new.tmpl +++ b/templates/repo/settings/hook_new.tmpl @@ -8,7 +8,7 @@ {{if .PageIsSettingsHooksNew}}{{.i18n.Tr "repo.settings.add_webhook"}}{{else}}{{.i18n.Tr "repo.settings.update_webhook"}}{{end}} <div class="ui right"> {{if eq .HookType "gitea"}} - <img class="img-13" src="{{AppSubUrl}}/img/favicon.png"> + <img class="img-13" src="{{AppSubUrl}}/img/gitea-sm.png"> {{else if eq .HookType "gogs"}} <img class="img-13" src="{{AppSubUrl}}/img/gogs.ico"> {{else if eq .HookType "slack"}} |