-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
29 lines (29 loc) · 1.21 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
---
layout: default
---
{% include key.html header="Home" %}
<div class="row">
<div class="sidebar-col"></div>
<div class="content-col main-page">
<div class="main-content">
Welcome to the home page of the <a href="{{ 'about/' | prepend: site.baseurl }}">PPP</a>, Carnegie Mellon's hacking team. This site hosts our write-ups and discussions about capture the flag competitions.
</div>
<div class="main-content main-logo">
<img src="{{ '/images/new_logo.png' | prepend: site.baseurl }}"/>
</div>
<div class="main-content">
<h2 class="sidebar-title">Current CMU Students</h2>
Interested in joining? See <a href="{{ 'contact' | prepend: site.baseurl }}">here</a>!
</div>
<div class="main-content">
<h2 class="sidebar-title">Recent Posts</h2>
{% for post in site.posts limit:10 %}
<a class="sidebar-link" href="{{ post.url | prepend: site.baseurl }}">
<span class="sidebar-post-title">{{ post.title }}</span>
{% if post.ctf %}<span class="sidebar-post-ctf">{{ post.ctf }}</span>{% endif %}
{% if post.year %}<span class="sidebar-post-year">{{ post.year }}</span>{% endif %}
</a>
{% endfor %}
</div>
</div>
</div>