From d9cdea797fe26cc02d213b5fb040be8b38958be6 Mon Sep 17 00:00:00 2001 From: ManeraKai Date: Sat, 31 Dec 2022 11:01:50 +0300 Subject: Switched back to pug --- src/pages/widgets/links.pug | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/pages/widgets/links.pug (limited to 'src/pages/widgets/links.pug') diff --git a/src/pages/widgets/links.pug b/src/pages/widgets/links.pug new file mode 100644 index 00000000..8c5a3915 --- /dev/null +++ b/src/pages/widgets/links.pug @@ -0,0 +1,16 @@ +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) + img(src=`/assets/images/${key}-icon.${services[key].imageType}`) + span(data-localise="__MSG_"+key+"__")=services[key].name + + div(class="title") + a(href="#about") + img(src="/assets/images/about-icon.svg") + span(data-localise="__MSG_about__") About -- cgit 1.4.1