-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (34 loc) · 934 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
---
layout: default
title: Home
---
<h2>Welcome</h2>
<p>
Hello folks !!
This is the personal website of <a href="/about">me</a>. Here you will find <a href="/archive">blogs</a> and other stuff.
Use the side bar to navigate around if you are a human, use the <a href="/sitemap.xml">sitemap.xml</a> if you are a bot.
</p>
<img src="/images/word-cloud.jpg" alt="Word Cloud"/>
<h2>Recent blog posts</h2>
<ul class="posts">
{% for post in site.posts limit:5 %}
<li>
<span>{{ post.date | date_to_string }}</span> »
<a href="{{ post.url }}">
{{ post.title }}</a>
</li>
{% endfor %}
</ul>
<hr>
<h2>Keeping up with blogs</h2>
{% include keeping_up.html %}
<hr>
<h2>Search this website</h2>
<br>
{% include google_search.html %}
<!-- Tags -->
<ul class="tags">
{% for tag in post.tags %}
<li><a href="/tags#{{ tag }}" class="tag">{{ tag }}</a></li>
{% endfor %}
</ul>