-
Notifications
You must be signed in to change notification settings - Fork 17
/
index.html
69 lines (68 loc) · 2.45 KB
/
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
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
69
---
layout: quaxio
---
<div class="index">
<header>
<div class="first"><img src="{{ site.baseurl }}/alok.jpg"></div>
<div>
<h1><a href="{{ site.baseurl }}/">Alok Menghrajani</a></h1>
<p>
Previously: security engineer at Square, co-author of HackLang,
put the 's' in https at Facebook. Maker of CTFs.
</p>
<p>
This blog does not use any tracking cookies and does not
serve any ads. Enjoy your anonymity; I have no idea who you are, where
you came from, and where you are headed to. Let's dream of an Internet
from times past.
</p>
<p>
<a href="/contact_me.html">Contact me</a> |
<a href="https://github.com/alokmenghrajani?tab=repositories">Github</a> |
<a rel="me" href="https://infosec.exchange/@alok">@[email protected]</a> |
<a href="/feed.xml">Feed</a> |
<a href="https://zxs.ch/">Consulting services</a> |
<a href="/tools_and_games">Tools & games</a>
</p>
</div>
</header>
<div>
{% for year in site.data.old_posts %}
<h2 class="index-year">{{ year.year }}</h2>
{% for post in site.posts %}
{% assign currentYear = post.date | date: "%Y" %}
{% assign currentYearN = currentYear | plus: 0 %}
{% if currentYearN <= 2012 %}
{% assign currentYear = "2012 and older" %}
{% endif %}
{% if currentYear == year.year %}
<div class="index-post">
<h3 class="index-post-title">
<a href="{{ post.permalink }}{{ post.external }}">{{ post.title }}</a>
{% if post.subtitle %}<div class="index-post-title-subtitle">{{ post.subtitle}}</div>
{% endif %}
</h3>
{% unless post.nodate %}
<div class="index-post-date">
<time>{{ post.date | date: '%b %-d, %Y' }}</time>
</div>
{% endunless %}
{% if post.tags.size > 0 %}
<div class="index-post-tags">{{ post.tags | join: ' | '}}</div>
{% endif %}
</div>
{% endif %}
{% endfor %}
{% for post in year.posts %}
<div class="index-post">
<h3 class="index-post-title">
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
</h3>
<div class="index-post-date">
<time>{{ post.date }}</time>
</div>
</div>
{% endfor %}
{% endfor %}
</div>
</div>