{% include head.html %} {% include header.html %}

{{ page.name }}

{{ page.website }}
{% if page.email %}
Email:

{{ 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 %}

{{ content }}

{% 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 %}
{% include footer.html %}