-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (66 loc) · 2.54 KB
/
index.html
File metadata and controls
68 lines (66 loc) · 2.54 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
layout: default
title: Diary of Arjun - Arjun's Cyber Security Blog
description: Chronicling the adventures of a cyber security geek.
sitemap:
priority: 1.0
changefreq: weekly
---
<div class="row">
<div class="col s12 m12 l12">
<!-- Blank :) Happy! You're gonna have to hold on! -->
</div>
<style>
header {
background: url('assets/images/Arjun_DiaryOfArjun.jpg');
background-size: contain;
background-repeat: no-repeat;
background-position: center;
min-height: 455px;
}
</style>
<div class="row flow-text">
<div class="col s12 m5 l5">
<h1>Welcome to <br /><b>Diary of Arjun</b></h1>
<p>Chronicling the adventures of a cyber security geek</p>
<p>
<blockquote>
<i>
The woods are lovely, dark and deep,<br />
But I have promises to keep,<br />
And miles to go before I sleep,<br />
And miles to go before I sleep.<br />
<br />
<span class="right-align">Stopping by Woods on a Snowy Evening</span>
<br />
<span class="right-align">Robert Frost</span>
</i>
</blockquote>
</p>
</div>
<div class="col s12 m7 l7">
<header>
{%- comment -%} Content goes here automatically header{} CSS :) {%- endcomment -%}
</header>
</div>
</div>
</div>
<h2>Read my <b>Latest Posts</b></h2>
<div class="row">
{% for post in site.posts limit:6 %}
<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 %}
<a href="/blog" class="waves-effect waves-light btn right black white-text text-darken-4">View More Posts</a>
</div>