forked from lapikud/lapikud.github.io
* added and cleaned up our work section items, descriptions * added new images for our work section * removed URLs from our work view * added proper page titles
39 lines
1022 B
HTML
39 lines
1022 B
HTML
---
|
|
layout: default
|
|
title: Tehtud tööd - Lapikud
|
|
---
|
|
<div class="page">
|
|
<div id="ourwork-banner">
|
|
<h1 class="centered-text">Vajad head, kvaliteetset arendusteenust?</h1>
|
|
<a href="/contact">
|
|
<h1 class="centered-text banner">
|
|
Võta meiega ühendust!
|
|
</h1>
|
|
</a>
|
|
|
|
</div>
|
|
<h1 class="centered-text">Tehtud tööd:</h1>
|
|
<div id="ourwork-done">
|
|
|
|
{% for work in site.data.ourwork %}
|
|
<div class="work-item">
|
|
<div class="description">
|
|
<h2>{{ work.title }}</h2>
|
|
<p>{{ work.description }}</p>
|
|
</div>
|
|
{% if work.url == null %}
|
|
<div class="thumbnail">
|
|
<img src="{{ "/assets/ourwork-images/" | append: work.photo }}" alt="{{ work.title }}">
|
|
</div>
|
|
{% else %}
|
|
<a class="thumbnail" href="{{ work.url }}" target="_blank" rel="noopener noreferrer">
|
|
<img src="{{ "/assets/ourwork-images/" | append: work.photo }}" alt="{{ work.title }}">
|
|
</a>
|
|
{% endif %}
|
|
</div>
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</div>
|