-       <div id="services-list">
-               <h2>{% trans "Availble services" %}</h2>
-               <a href="http://redakcja.nowoczesnapolska.org.pl/">
-                       <img src="http://www.nowoczesnapolska.org.pl/wordpress/wp-content/uploads/2008/11/wl-logo-white.png">
-               </a>
-               <a href="http://redmine.nowoczesnapolska.org.pl/">
-                       <img src="{{ MEDIA_URL }}static/redmine_logo.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 %}