forked from lapikud/lapikud.github.io
* added portfolio, mentors and management YAML files to be used in templating * fixed issue with landing page not working properly in mobile view * removed annoying page style that was applied to everything * improved text sizes in various views * reworked mentors view styles * rearranged landing page vector graphics to match their meaning more * code style improvements
35 lines
818 B
HTML
35 lines
818 B
HTML
---
|
|
layout: default
|
|
---
|
|
<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>
|
|
<a href="{{ work.url }}">
|
|
<h3>{{ work.url }}</h3>
|
|
</a>
|
|
<p>{{ work.description }}</p>
|
|
</div>
|
|
<a class="thumbnail" href="{{ work.url }}">
|
|
<img src="{{ "/assets/ourwork-images/" | append: work.photo }}" alt="{{ work.title }}">
|
|
</a>
|
|
</div>
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</div>
|