{% extends 'master.twig' %} {% block column_right %} {% if side_contacts is defined %}
Elsewhere
{% for contact in side_contacts %}
{% if contact.iconIsDomain %} {% elseif contact.iconIsImage %} {% else %} {{ contact.icon }} {% endif %}
{{ contact.title }} / {{ contact.display }}
{% endfor %}
{% endif %} {% if side_projects is defined %}
Featured Projects
{% for i, project in side_projects %}
{{ i % 2 ? '★' : '☆' }}
{{ project.info.name }}
{% endfor %}
{% endif %}
Tools
{% for link in globals.siteInfo.toolsMenu %}
{{ link.icon }}
{{ link.title }}
{% endfor %}
{% endblock %}