-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproducts.html
More file actions
32 lines (30 loc) · 973 Bytes
/
products.html
File metadata and controls
32 lines (30 loc) · 973 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
31
32
---
title: Products
permalink: /products
tags: ["products", "softwares", "applications", "services"]
layout: page
---
<header class="page" style="background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('{{ site.baseurl }}/assets/img/pages/gwc-products.jpg');">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>We write code that makes life easier !</h1>
<p>Solving complicated problems using computer technologies is what we are good at.</p>
</div>
</div>
</div>
</header>
<section id="product-page-products" class="supernova-bg">
<div class="row">
{% for product in site.categories.products %}
<div class="col-sm-6 product color">
<div>
<img src="" alt="">
<h2>{{ product.title }}</h2>
<p>{{ product.excerpt | truncatewords: 25 }}</p>
<a href="{{ site.url }}/{{ product.permalink }}" class="try">Try Demo</a>
</div>
</div>
{% endfor %}
</div>
</section>