+ {% if page.email %}
+
+ {% endif %}
+ {% if page.telephone %}
+
+
Tel:
+
{{ page.telephone }}
+
+ {% endif %}
+ {% if page.address %}
+
+
Address:
+
{{ page.address | split: "," | join: "
" }}
+
+ {% endif %}
+
+ {% if page.twitter %}
+
Twitter
+ {% endif %}
+ {% if page.github %}
+
Github
+ {% endif %}
+
-
Github:
-
{{ page.github }}
+
+
+
+
+ {% if page.services %}
+
+ Services
+
+
+ {% for service in page.services %}
+ {% assign s = site.services | where: "slug", service | first %}
+ - {{ s.name }}
+ {% endfor %}
+
+
+ {% endif %}
+
+ {% if page.technologies %}
+
+ Technologies
+
+
+ {% for technology in page.technologies %}
+ {% assign t = site.technologies | where: "slug", technology | first %}
+ - {{ t.name }}
+ {% endfor %}
+
+
+ {% endif %}
+
+ {% if page.clients %}
+
+ Clients
+
+
+ {% for client in page.clients %}
+ {% assign c = site.clients | where: "slug", client | first %}
+ - {{ c.title }}
+ {% endfor %}
+
+
+ {% endif %}
- {% endif %}
- {% if page.email %}
-
- {% endif %}
- {% if page.telephone %}
-
-
Tel:
-
{{ page.telephone }}
-
- {% endif %}
- {% if page.address %}
-
-
Address:
-
{{ page.address | split: "," | join: "
" }}
-
- {% endif %}
-
-
-
-
-
- {% if page.services %}
-
- Services
-
-
- {% for service in page.services %}
- {% assign s = site.services | where: "slug", service | first %}
- - {{ s.name }}
- {% endfor %}
-
-
- {% endif %}
-
- {% if page.technologies %}
-
- Technologies
-
-
- {% for technology in page.technologies %}
- {% assign t = site.technologies | where: "slug", technology | first %}
- - {{ t.name }}
- {% endfor %}
-
-
- {% endif %}
-
- {% if page.clients %}
-
- Clients
-
-
- {% for client in page.clients %}
- {% assign c = site.clients | where: "slug", client | first %}
- - {{ c.title }}
- {% endfor %}
-
-
- {% endif %}
+