-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
94 lines (92 loc) · 2.77 KB
/
index.html
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
---
layout: default
title: diowa
description: Web Development Agency. Hire us for your projects!
tagline: Supporting tagline
products:
-
title: Company Carpool
url: www.companycarpool.com
image: companycarpool.jpg
description: A solution for companies and organizations interested in providing carpooling to their employees.
-
title: Minstrels
url: beta.minstrels.com
image: minstrels.jpg
description: Minstrels is a social network designed for travelers. Members share travel stories, meet fellow travelers and ask for or offer hospitality.
-
title: icare
url: icare.diowa.com
github: diowa/icare
image: icare.jpg
description: icare is an open source carpooling platform used as basis for Company Carpool and other customized enterprise solutions.
technologies:
-
title: Ruby on Rails
url: http://rubyonrails.org/
image: Ruby-on-Rails.png
-
title: CoffeeScript
url: http://coffeescript.org/
image: CoffeeScript.png
-
title: Bootstrap
url: http://getbootstrap.com
image: Bootstrap.png
-
title: MongoDB
url: http://www.mongodb.org
image: MongoDB.png
-
title: PostgreSQL
url: http://www.postgresql.org/
image: PostgreSQL.png
-
title: Wordpress
url: http://www.wordpress.org
image: WordPress.png
---
{% include JB/setup.html %}
<div id="home-jumbotron" class="jumbotron">
<div class="container">
<h1>Web Development Agency</h1>
</div>
</div>
<div class="container home-container">
<!-- Products -->
<h2 class="text-center home-title">Our products</h2>
{% for product in page.products %}
<div class="row row-product">
<div class="col-sm-5">
<!-- 1060 x 876 -->
<a href="http://{{product.url}}" class="thumbnail thumbnail-product"><img class="img-responsive" src="{% asset {{product.image}} @path %}" alt="{{product.title}}"/></a>
</div>
<div class="col-sm-7">
<h3>{{product.title}}</h3>
<p>
{{product.description}}
</p>
<p>
<span class="fa fa-globe"></span> <a href="http://{{product.url}}">{{product.url}}</a>
</p>
{% if product.github %}
<p>
<span class="fa fa-github"></span> <a href="http://github.com/{{product.github}}">{{product.github}}</a>
</p>
{% endif %}
</div>
</div>
{% endfor %}
<!-- Technologies -->
<h2 class="text-center home-title">Technologies</h2>
<ul class="nav nav-justified">
{% for technology in page.technologies %}
<li>
<a href="{{technology.url}}">
<img class="img-technology" alt="{{technology.title}}" src="{% asset {{technology.image}} @path %}"/>
<span class="title-technology">{{technology.title}}</span>
</a>
</li>
{% endfor %}
</ul>
</div>