about summary refs log tree commit diff stats
path: root/src/pages/widgets/links.ejs
blob: 6fa9514c0351fee204b7909859bac44acb855349 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<section class="links" id="links">
  <div class="title"><%- include ('src/assets/images/general-icon.svg') %><a href="#general" data-localise="__MSG_general__">General</a></div>
  <% for (const service in services) { -%>
  <div class="title">
  <% if (services[service].imageType != "svgMono") { _%>
  <img src="../../../assets/images/<%= service %>-icon.<%= services[service].imageType %>">
  <% } else { _%>
  <%- include ('src/assets/images/' + service + '-icon.svg') %>
  <% } _%>
  <a href="#<%= service %>" data-localise="__MSG_<%= service %>__"><%= services[service].name %></a></div>
  <% }; -%>
  <div class="title"><%- include ('src/assets/images/about-icon.svg') %><a href="#about" data-localise="__MSG_about__">About</a></div>
</section>