blob: cc7f86fee8c663e8118caab70dffc7780aebd100 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
section(class="links" id="links")
div(class="title")
a(href="#general")
include /src/assets/images/general-icon.svg
span(data-localise="__MSG_general__") General
each val, key in services
div(class="title")
a(href="#"+key)
if services[key].imageType == 'svgMono'
img(class='dark' src=`/assets/images/${key}-icon.svg`)
img(class='light' src=`/assets/images/${key}-icon-light.svg`)
else
img(src=`/assets/images/${key}-icon.${services[key].imageType}`)
span(data-localise="__MSG_"+key+"__")=services[key].name
div(class="title")
a(href="#about")
img(class='dark' src="/assets/images/about-icon.svg")
img(class='light' src="/assets/images/about-icon-light.svg")
span(data-localise="__MSG_about__") About
|