-
Notifications
You must be signed in to change notification settings - Fork 59
/
applications.html
46 lines (43 loc) · 1.22 KB
/
applications.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
---
title: Rakendused
layout: default
permalink: /rakendused/
ref: apps
lang: et
---
{% include breadcrumbs.html %}
<h1>Rakendused</h1>
<br>
<div style="
display: grid;
grid-template-columns: repeat( auto-fit, minmax(300px, 1fr) );
grid-gap: 20px;
">
{% assign sortapps = site.applications | sort:"submitted" | reverse %}
{% for application in sortapps %}
<div
class="card"
style="
display: flex;
flex-direction: column;
justify-content: space-between;
"
>
<div class="card-body">
<a href="{{ site.baseurl }}{{ application.url }}">
<div style="
height: 180px;
background-image: url(/img/apps/{{application.img}});
background-size: cover;
border-radius: .25rm;
border: 2px solid #dee2e6;
"></div>
<h3>{{ application.app_name }}</h3></a>
<p class="text_control">{{ application.app_description }}</p>
</div>
<div class="card-footer text-muted">
{{ application.developed_by }} {{ application.submitted }}
</div>
</div>
{% endfor %}
</div>