22 lines
684 B
Twig
22 lines
684 B
Twig
|
{% if page.company %}
|
||
|
{% set company = site.companies[page.company] %}
|
||
|
|
||
|
<div class="project-company {{ company.logo ? 'has-logo' : 'no-logo' }}">
|
||
|
<h2>Built {{ page.freelance ? 'for' : 'whilst at' }}</h2>
|
||
|
|
||
|
{% if company.logo %}
|
||
|
{% set name = '<img src="/assets/images/experience/' ~ company.logo ~ '" alt="' ~ company.name ~ '">' %}
|
||
|
{% else %}
|
||
|
{% set name = company.name %}
|
||
|
{% endif %}
|
||
|
|
||
|
{% if company.url %}
|
||
|
<a href="{{ company.url }}" title="{{ company.name }}">
|
||
|
{{ name|raw }}
|
||
|
</a>
|
||
|
{% else %}
|
||
|
{{ name|raw }}
|
||
|
{% endif %}
|
||
|
</div>
|
||
|
{% endif %}
|