-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (28 loc) · 992 Bytes
/
index.html
File metadata and controls
30 lines (28 loc) · 992 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
29
30
---
layout: default
title: Applidium Open Source
---
<h2 class="promo">At Applidium, we are committed to open source. Following this philosophy, we are happy to share some of our works with the community. Enjoy!</h2>
<div id="projects">
<ul>
{% assign sorted_posts = site.posts | sort:"name" %}
{% for post in sorted_posts %}
<li class="project">
<div class="header">
<p class="title">{{ post.title }}</p>
<p class="links">{% if post.github %}<a href="https://github.com/applidium/{{ post.github }}">github</a>{% endif %}</p>
</div>
{% if post.website %}
<a href="{{ post.website }}">
{% else %}
<a href="https://github.com/applidium/{{ post.github }}">
{% endif %}
<div class="thumbnail">
<div class="description">{{post.excerpt}}</div>
<img src="{{ post.thumbnail_url}}" alt="{{ post.title }}" width="300" height="184">
</div>
</a>
</li>
{% endfor %}
</ul>
</div>