forked from TowerofHanoi/towerofhanoi.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (56 loc) · 3.37 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
---
layout: default
---
<div class="container-fluid index">
<div class="row">
<div class="col-md-12 col-lg-12 main content-panel">
<div class="gravatar">
<a href="{{ site.url }}"><img src="{{ site.home_image }}" class="about-image" alt="{{ site.title }}" /></a>
</div>
<h1 class="header author-header" itemprop="headline">
<img src="{{ site.logo_brand }}" alt="{{ site.title }}" style="display: block; width: 80%; max-width: 500px; margin: 0 auto;" />
</h1>
<div class="author-text">
{{ site.title_description }}
</div>
<div class="links-wrapper"><a class="btn btn-primary" role="button" href="/about">Who are we?</a>
<div class="links" style="float: right;">
<!-- <a href="/search.html"><i class="fa fa-search fa-2x"></i></a> -->
{% if site.twitter_username %}<a href="http://www.twitter.com/{{ site.twitter_username }}" target="_new"><i class="fa fa-twitter fa-2x"></i></a>{% endif %}
{% if site.linkedin_link %}<a href="{{ site.linkedin_link }}" target="_new"><i class="fa fa-linkedin fa-2x"></i></a>{% endif %}
{% if site.google_plus_link %}<a href="{{ site.google_plus_link }}" target="_new"><i class="fa fa-google-plus fa-2x"></i></a>{% endif %}
{% if site.github_username %}<a href="https://github.com/{{ site.github_username }}" target="_new"><i class="fa fa-github-alt fa-2x"></i></a>{% endif %}
{% if site.stackoverflow_link %}<a href="{{ site.stackoverflow_link }}" target="_new"><i class="fa fa-stack-overflow fa-2x"></i></a>{% endif %}
<a href="feed.xml" target="_new"><i class="fa fa-rss fa-2x"></i></a>
</div>
</div>
</div>
<div>
<div class="col-md-12 main content-panel">
<div class="col-md-8 articles">
<h2>Latest <strike>Articles</strike> CTF writeups</h2>
<ul>
{% for post in site.posts | limit: site.post_limit %}
<li>
<a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
<br>
<span class="post-date">{{ post.date | date: "%B %-d, %Y" }} by {% if post.author %}{{ post.author }}{% else %}ToH Team{% endif %} · <a href="{{ post.url }}#disqus_thread" style="color: #969696;"></a></span>
<br>
<span class="post-summary">In short: {{post.summary}}</span>
</li>
<hr>
{% endfor %}
<li>
<small><i><a href="/posts">more...</a></i></small>
</li>
</ul>
</div>
<div class="col-md-4">
<a class="twitter-timeline"
data-dnt="true" data-chrome="transparent noscrollbar nofooter noborders" data-height="800" data-link-color="#ffa500" data-theme="dark"
href="https://twitter.com/towerofhanoi">Tweets by towerofhanoi</a>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
</div>
</div>
</div>