-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
24 lines (23 loc) · 905 Bytes
/
blog.html
File metadata and controls
24 lines (23 loc) · 905 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
---
layout: default
title: Blog - Diary of Arjun
description: Read Arjun's latest blog posts about cyber security, programming, data analysis, and so much more.
sitemap:
priority: 1.0
changefreq: weekly
---
<div class="row">
{% for post in site.posts%}
<div class="col s12 m6 l4">
<div class="card medium">
<div onclick="window.location='{{post.url}}'" class="card-image cool-image waves-effect waves-block waves-light" style="background-image:url(/assets/images/{{post.coverImage}}); background-size:cover;background-position:center;">
</div>
<div class="card-content transparent ">
<p class="flow-text grey-text text-darken-5 ">{{post.date | date_to_string}}</p>
<p class="flow-text grey-text text-darken-4 ">{{post.full_title}}</p>
<a style="visibility: hidden;" href="{{site.url}}{{post.url}}">{{post.full_title}}</a>
</div>
</div>
</div>
{% endfor %}
</div>