Sha256: 109527e588c35a24317d46044a6293cf7d261b3517a4ef3000a26d4372ee80bd

Contents?: true

Size: 680 Bytes

Versions: 7

Compression:

Stored size: 680 Bytes

Contents

---
layout: page
---
{{ content }}
{% assign service_idx=0 %}
{% for service in site.services %}
	{% if page.title != service.title %}
		{% capture modulo %}{{ service_idx | modulo:3 }}{% endcapture %}	
		{% if modulo == '0' or forloop.first %}
		<div class="flex flex-3">
		{% endif %}
		<article>
			<header>
				<h3>{{ service.title }}</h3>
			</header>
			<p>{{ service.short_description }}</p>
			<footer>
				<a href="{{ site.baseurl }}{{ service.url }}" class="button special">More</a>
			</footer>
		</article>		
		{% if modulo == '2' or forloop.last %}
		</div>
		{% endif %}
		{% capture service_idx %}{{ service_idx | plus:1 }}{% endcapture %}
	{% endif %}
{% endfor %}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
jekyll-theory-0.1.9 _layouts/service.html
jekyll-theory-0.1.8 _layouts/service.html
jekyll-theory-0.1.7 _layouts/service.html
jekyll-theory-0.1.6 _layouts/service.html
jekyll-theory-0.1.5 _layouts/service.html
jekyll-theory-0.1.4 _layouts/service.html
jekyll-theory-0.1.3 _layouts/service.html