mirror of https://sc.cryxtal.org/crystal/forgejo
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
344 B
16 lines
344 B
package shared
|
|
|
|
import (
|
|
"html"
|
|
"html/template"
|
|
"strconv"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
)
|
|
|
|
func ImgIcon(name string, size int) template.HTML {
|
|
s := strconv.Itoa(size)
|
|
src := html.EscapeString(setting.StaticURLPrefix + "/assets/img/" + name)
|
|
return template.HTML(`<img width="` + s + `" height="` + s + `" src="` + src + `">`)
|
|
}
|