-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
44 lines (43 loc) · 1.43 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
---
layout: default
title: The voice for OSS on campus
named: Home
banner: true
---
<section class="column events">
<h1><a href="/events.html">Events</a></h1>
<ul>
{% assign events = '' %}
{% for post in site.posts %}
{% if post.layout == "event" and events != "nnnnnnnnnnnn" %}
{% capture events %}{{ events | append: 'n' }}{% endcapture %}
<li>
<time datetime="{{ post.date }}">{{ post.date | date_to_string }}</time>
<span class="text"><a href="{{ post.url }}">{{ post.title }}</a></span>
</li>
{% endif %}
{% endfor %}
</ul>
<a href="/events.html#full-feed" class="more">See more</a>
</section>
<section class="column news">
<h1><a href="/news.html">News / Blog</a></h1>
<ul>
{% assign posts = '' %}
{% for post in site.posts %}
{% if post.layout == "post" and posts != "nnnnnnnnnnnn" %}
{% capture posts %}{{ posts | append: 'n' }}{% endcapture %}
<li>
<time datetime="{{ post.date }}">{{ post.date | date_to_string }}</time>
<span class="text"><a href="{{ post.url }}">{{ post.title }}</a></span>
</li>
{% endif %}
{% endfor %}
</ul>
<a href="/news.html#full-feed" class="more">See more</a>
</section>
<section class="column feed" data-n="15">
<h1><a href="/projects.html">Open source & Us</a></h1>
<ul class="loading"></ul>
<a href="/projects.html#full-feed" class="more">See more</a>
</section>