29 lines
595 B
Go
Raw Normal View History

2017-06-16 16:12:18 +00:00
package utils
import (
"io/ioutil"
"strings"
)
2017-06-16 16:19:32 +00:00
var svgIcons = make(map[string]string)
func init() {
files, _ := ioutil.ReadDir("images/icons/svg/")
for _, file := range files {
name := strings.Replace(file.Name(), ".svg", "", 1)
data, _ := ioutil.ReadFile("images/icons/svg/" + name + ".svg")
svgIcons[name] = strings.Replace(string(data), "<svg ", "<svg class='icon' ", 1)
}
}
2017-06-16 16:12:18 +00:00
// Icon ...
func Icon(name string) string {
2017-06-16 16:19:32 +00:00
return svgIcons[name]
2017-06-16 16:12:18 +00:00
}
// RawIcon ...
func RawIcon(name string) string {
2017-06-16 16:19:32 +00:00
return strings.Replace(svgIcons[name], "class='icon'", "class='raw-icon'", 1)
2017-06-16 16:12:18 +00:00
}