| 
									
										
										
										
											2016-06-07 22:13:07 +01:00
										 |  |  | {% if page.company %}
 | 
					
						
							|  |  |  |     {% set company = site.companies[page.company] %}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-29 19:13:09 +00:00
										 |  |  |     <div class="project-company {{ company.logo ? 'has-logo' : 'no-logo' }}">
 | 
					
						
							| 
									
										
										
										
											2016-06-07 22:13:07 +01:00
										 |  |  |         <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.website %}
 | 
					
						
							|  |  |  |             <a href="{{ company.website }}" title="{{ company.name }}">
 | 
					
						
							|  |  |  |                 {{ name|raw }}
 | 
					
						
							|  |  |  |             </a>
 | 
					
						
							|  |  |  |         {% else %}
 | 
					
						
							|  |  |  |             {{ name|raw }}
 | 
					
						
							|  |  |  |         {% endif %}
 | 
					
						
							|  |  |  |     </div>
 | 
					
						
							|  |  |  | {% endif %}
 |