-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
35 lines (32 loc) · 948 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
---
layout: default
title: HackerEarth Engineering
description: Blog about engineering and technology at HackerEarth.
---
{% include JB/setup %}
{% include JB/analytics %}
<div id="home">
<ul class="posts">
{% for post in site.posts %}
{% if post.categories != "tips" %}
<h2><a class="post-heading" href="{{ post.url }}">{{ post.title }}</a></h2>
<p> {{ post.description }} </p>
<p class="date">
{% if post.author %}
{{ post.author }} |
{% endif %}
{{ post.date | date_to_string }}
</p>
<hr class="hr-color"></hr>
{% endif %}
{% endfor %}
</ul >
<!--<h1>Tips</h1>
<ul class="posts">
{% for post in site.posts %}
{% if post.categories contains 'tips' %}
<h2><span>{{ post.date | date_to_string }}</span><a href="{{ post.url }}">{{ post.title }}</a></h2>
{% endif %}
{% endfor %}
</ul> -->
</div>