-       <div id="services-list">
-               <h2>{% trans "Availble services" %}</h2>
-               <a href="http://redakcja.wolnelektury.pl/">
-                       <img src="{{ MEDIA_URL }}static/platforma.png">
-               </a>
-       </div>
+    {% if services %}
+       <section id="services-list">
+        <h1>{% trans "Sign in to:" %}</h1>
+        {% for service in services %}
+            <a href="{{ service.url }}" title="{{ service.name }}">
+                <img src="{{ service.image.url }}" alt="{{ service.name }}">
+            </a>
+        {% endfor %}
+       </section>
+    {% endif %}