diff options
Diffstat (limited to 'bin/serve.fnl')
| -rw-r--r-- | bin/serve.fnl | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/bin/serve.fnl b/bin/serve.fnl index 67c3d7d..f98a5ff 100644 --- a/bin/serve.fnl +++ b/bin/serve.fnl @@ -37,17 +37,25 @@ (fn site-name-template [name] (if (= name "ipuer") - [:a {:class "site-icon" :href "https://ipuer.ru"} + [:a {:class "site-icon" :href "https://ipuer.ru" + :alt "Логотип Институт чай пуэр"} [:img {:src "/static/ipuer.jpg"}] "Институт чая пуэр"] (= name "artoftea") - [:a {:class "site-icon" :href "https://artoftea.ru"} + [:a {:class "site-icon" :href "https://artoftea.ru" + :alt "Логотип Art of tea"} [:img {:src "/static/artoftea.png"}] "Art of tea"] (= name "ozchai") - [:a {:class "site-icon" :href "https://ozchai.ru"} + [:a {:class "site-icon" :href "https://ozchai.ru" + :alt "Логотип #OZCHAI"} [:img {:src "/static/ozchai.ico"}] "Чайная #OZCHAI"] + (= name "clubcha") + [:a {:class "site-icon" :href "https://clubcha.ru" + :alt "Логотип Железный Феникс"} + [:img {:src "/static/clubcha.png"}] + "Железный Феникс"] "")) (fn item-template [product] |
