-
Notifications
You must be signed in to change notification settings - Fork 824
/
cases.html
29 lines (25 loc) · 994 Bytes
/
cases.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
---
section: cases
layout: default
image: /images/social/elixir-og-card.jpg
---
<h1>Cases</h1>
<p>Click on the cases below to learn more about how companies across different industries are using the power of Elixir and its ecosystem to create and grow their businesses. Cases are listed in the order they have been published.</p>
<div class="cases-boxes">
{% assign sorted_posts = site.categories["Elixir in Production"] | sort: 'date' %}
{% for post in sorted_posts %}
<a class="cases-box" href="{{ post.url }}" title="Case: {{ post.title }}">
{% if post.logo == nil %}
<div class="cases-image" style="background-image: url('/images/cases/logos/default-image.png')"></div>
{% else %}
<div class="cases-image" style="background-image: url('{{ post.logo }}')"></div>
{% endif %}
<div class="cases-tag">
{% for tag in post.tags %}
<span>#{{tag}}</span>
{% endfor %}
</div>
</a>
{% endfor %}
</div>
<p></p>