contact | excerpt | layout | title |
---|---|---|---|
true |
Check out the web applications the Velocity Labs team has developed for our clients. We use a variety of languages and frameworks to create great experiences. |
inner |
Projects |
show all
{% assign categories = site.data.projects | get_categories %}
{% for category in categories %}
{{ category }}
{% endfor %}
{% for project in site.data.projects %}
{% assign full_path=project.title | full_image_path %}
{% assign thumb_path=project.title | thumb_image_path %}
<a href="{% asset '{{full_path}}' @path %}" rel="nofollow" class="popup-gallery popovers" title="{{ project.title }}" data-html="true" data-content="{{ project.description | xml_escape }}<br /><b>Type: {{ project.categories | array_to_sentence_string }}</b>">
<img src="{% asset '{{thumb_path}}' @path %}" alt="{{ project.title }}" class="img-responsive center-block">
</a>
<div class="visible-xs">
<h3>{{ project.title }}</h3>
<p>{{ project.description }}</p>
<b>Type: {{ project.categories | array_to_sentence_string }}</b>
</div>
</div>
{% endfor %}
</div>