-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (38 loc) · 1.1 KB
/
index.html
File metadata and controls
40 lines (38 loc) · 1.1 KB
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
---
layout: default
title: azhar amir~
---
{% for post in site.posts %}
<article>
{% if post.categories contains 'computer' %}
<h2><a title="Posted on {{ post.date | date_to_string }}" href="{{ post.url }}">{{ post.title }}</a></h2>
<p class="meta">{{ post.date | date_to_string }}</p>
<div class="post">
<p>{{ post.content | strip_html | truncate: 350 }}<a href="{{ post.url }}"> Read More</a></p>
</div>
{% endif %}
</article>
{% endfor %}
<footer>
<p>
Made with <a href="http://jekyllrb.com/">Jekyll</a>,
hosted on <a href="https://github.com/jancuk/jancuk.github.io">Github Pages</a>.
</p>
<ul class="links">
<li>
<a href="https://github.com/jancuk" title="See my code on GitHub">
<i class="icon-github"></i>
</a>
</li>
<li>
<a href="https://twitter.com/intent/follow?screen_name=azhar_amir" title="Follow me on Twitter">
<i class="icon-twitter"></i>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/azharamir" title="Connect with me on LinkedIn">
<i class="icon-linkedin"></i>
</a>
</li>
</ul>
</footer>