forked from elixir-lang/elixir-lang.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcases.html
More file actions
28 lines (24 loc) · 953 Bytes
/
cases.html
File metadata and controls
28 lines (24 loc) · 953 Bytes
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
---
section: cases
layout: default
---
<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>