This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/source/_layouts/project.html.twig

42 lines
1.1 KiB
Twig
Raw Normal View History

2015-11-27 21:20:46 +00:00
{% extends 'page' %}
{% block content_wrapper %}
<main class="col-md-9">
{{ page.blocks.content_top|raw }}
{{ page.blocks.content|raw }}
{{ page.blocks.content_bottom|raw }}
</main>
{% endblock %}
{% block content_top %}
{{ parent() }}
2015-11-28 01:33:27 +00:00
Role: {{ page.role }}
2015-11-27 21:20:46 +00:00
{% if page.company %}
<div class="project--company">
<em>{% spaceless %}{% set company = site.companies[page.company] %}
Developed on behalf of
{% if company.website %}
<a href="{{ company.website }}">{{ company.title }}</a>
{% else %}
{{ company.title }}
{% endif %}{% endspaceless %}.</em>
</div>
{% endif %}
{% endblock %}
{% block content_bottom %}
{% if page.website %}
<div class="project--website">
<a href="{{ page.website }}" class="btn btn-primary">View the website</a>
</div>
{% endif %}
{% if page.image %}
<div class="project--image">
2015-12-02 08:19:36 +00:00
<img src="/assets/images/projects/{{ page.image }}" alt="The {{ page.title }} website.">
2015-11-27 21:20:46 +00:00
</div>
{% endif %}
{% endblock %}