File indexing completed on 2025-01-19 04:51:23

0001 {% extends "main.html" %}
0002 
0003 {% block style %}
0004 .links {
0005     margin: auto;
0006 }
0007 
0008 .links td {
0009     padding-top: 5px;
0010     padding-bottom: 5px;
0011 }
0012 
0013 {% endblock style %}
0014 
0015 {% block box %}
0016 
0017 <div class="center">
0018     <h2>{% i18n "Welcome to Kontact %1" _(version) %}</h2>
0019     <p>{% i18n "Kontact handles your e-mail, address book, calendar, to-do list and more." %}</p>
0020 </div>
0021 
0022 <table class="links">
0023     {% for link in links %}
0024     <tr>
0025         <td>
0026             <a href="{{ link.url }}">{% icon link.icon desktop %}</a>
0027         <td>
0028         <td>
0029             <a href="{{ link.url }}">{{ link.title }}</a><br/>
0030             <small>{{ link.subtext }}</small>
0031         </td>
0032     </tr>
0033     {% endfor %}
0034 </table>
0035 
0036 <span><a href="exec:/switch">{% i18n "Skip this introduction" %}</a></span>
0037 
0038 {% endblock box %}
0039