2015-11-27 21:20:46 +00:00
|
|
|
{% extends 'page' %}
|
|
|
|
|
|
|
|
{% block content_wrapper %}
|
2016-06-07 21:13:07 +00:00
|
|
|
{% if page.image -%}
|
|
|
|
<img src="/assets/images/projects/{{ page.image.name ?: page.image }}" alt="{{ page.image.alt }}">
|
|
|
|
{%- endif %}
|
2015-11-27 21:20:46 +00:00
|
|
|
|
2016-06-07 21:13:07 +00:00
|
|
|
{% block content %}{% endblock %}
|
2015-11-27 21:20:46 +00:00
|
|
|
|
|
|
|
{% if page.website %}
|
2016-06-07 21:13:07 +00:00
|
|
|
<a class="project__website" href="{{ page.website }}">
|
|
|
|
View the website
|
|
|
|
</a>
|
2015-11-27 21:20:46 +00:00
|
|
|
{% endif %}
|
|
|
|
|
2016-06-07 21:13:07 +00:00
|
|
|
{{ include('projects/skills') }}
|
|
|
|
{{ include('projects/company') }}
|
2015-11-27 21:20:46 +00:00
|
|
|
{% endblock %}
|