summaryrefslogtreecommitdiffstats
path: root/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'index.html')
-rw-r--r--index.html26
1 files changed, 12 insertions, 14 deletions
diff --git a/index.html b/index.html
index 9f331d8..edb373e 100644
--- a/index.html
+++ b/index.html
@@ -33,22 +33,20 @@
<ul class="grid_16">
{% for page in site.pages|sort(attribute='title') %}
{% if page.path.startswith('services/') %}
- <li class="grid_8 {{ loop.cycle('omega', 'alpha') }}">
- <div class="link">
- <div class="grid_2 alpha">
- <img src="{{page.logo_url}}" alt="{{page.title}}" />
- </div>
+ <li class="grid_8 {{ loop.cycle('omega', 'alpha') }} link">
+ <div class="grid_2 alpha">
+ <img src="{{page.logo_url}}" alt="{{page.title}}" />
+ </div>
- <div class="gird_6 omega">
- <a href="{{page.get_url()}}">
- <span class="link"></span>
- {{page.title}}
- </a>
+ <div class="grid_6 omega">
+ <a href="{{page.get_url()}}">
+ <span class="link"></span>
+ {{page.title}}
+ </a>
- <p>
- {{page.description}}
- </p>
- </div>
+ <p>
+ {{page.description}}
+ </p>
</div>
</li>
{% endif %}