-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
22 lines (22 loc) · 958 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
layout: base
title: Qasim Alyas | Web developer
nav: index
---
<h1>Hello I’m Qasim Alyas. I make websites.</h1>
<section>
<p>I’m a web developer that works with all variety of clients to understand their business needs and then to provide a solution using the latest web technologies. That means that your web site will give your customers a great desktop, mobile and tablet experience. I also have over five years of experience building wesbites for major <a href="/portfolio.html">publishing companies and small businesses</a>.</p>
</section>
<section>
<h2>Recent posts</h2>
<ol class="posts index">
{% for post in site.posts limit:3 %}
<li>
<h3><a href="{{ post.url }}">{{ post.title }}</a><span class="date">{{ post.date | date_to_string }}</span>
</h3>
<p>{{ post.content | strip_html | truncatewords: 20 }}</p>
</li>
{% endfor %}
</ol>
<a class="more" href="/posts.html">More posts</a>
</section>