-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 1.07 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
---
layout: default
title: occupy.here / a tiny self-contained darknet
---
{% include carousel.html %}
<div class="oh-main container">
<div class="row">
<div id="what" class="oh-section oh-what col-md-6">
{% include what_is_it.html %}
</div>
<div class="oh-section col-md-3 col-sm-5">
{% include sidebar.html %}
</div>
<div class="oh-section oh-news col-md-3 col-sm-7">
<h3>News</h3>
<div class="item" id="{{ site.posts.first.url }}">
<p class="smallcaps">{{ site.posts.first.date | date: "%B %-d, %Y" }}</p>
{{ site.posts.first.content }}
</div>
<div id="oh-archive">
{% for post in site.posts %}
{% if post != site.posts.first %}
<div class="item" id="{{ post.url }}">
<p class="smallcaps">{{ post.date | date: "%B %-d, %Y" }}</p>
{{ post.content }}
</div>
{% endif %}
{% endfor %}
</div>
<p id="oh-archive-link"><a href="#" class="oh-show-more" data-class="oh-show-archive">Show more</a></p>
</div>
</div>
</div>