Remove projects

No longer being updated.

Fixes #26
This commit is contained in:
Oliver Davies 2018-01-30 22:48:55 +00:00
parent 531a7622ee
commit de03517b20
45 changed files with 1 additions and 370 deletions

View file

@ -1,21 +0,0 @@
{% 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 %}

View file

@ -1,3 +0,0 @@
{% if page.image -%}
<img src="/assets/images/projects/{{ page.image.name ?: page.image }}" alt="{{ page.image.alt }}" class="img mw5-m">
{%- endif %}

View file

@ -1,11 +0,0 @@
{% if page.skills %}
<div class="project--skills">
<h2>Skills</h2>
<ul>
{% for skill in page.skills %}
<li>{{ skill }}</li>
{% endfor %}
</ul>
</div>
{% endif %}

View file

@ -1,5 +0,0 @@
{% if page.website %}
<a class="project-website btn btn-primary" href="{{ page.website }}">
View the website
</a>
{% endif %}