-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathindex.html
executable file
·52 lines (49 loc) · 1.95 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
---
layout: default
title: "Rebble"
date: 2015-06-12 11:56:42
permalink: /
---
<div class="home-container">
{% if site.hackathonActive == true %}
<a href="{{ site.hackathonUrl }}"> <div class="homepage-sticker">
<img src="https://dev-portal.rebble.io/res/img/large_icon_space.svg"></img>
<span> Hackathon!! </span>
</div></a>
{% endif %}
<div class="intro">
<div class="content">
<h1 class="title">{{ site.data.home.heading }}</h1>
<p class="summary">{{ site.data.home.about }}</p>
<a class="button orange" href="https://boot.rebble.io">Join Rebble</a>
</div>
<div class="bg"></div>
</div>
<div class="separator"></div>
</div>
<div id="posts">
{% for post in site.posts limit:3 %}
<article class="post">
<div class="text-content">
<p class="metadata">{{ post.date | date: "%b %-d, %Y" }}{% if post.author %} • by <a href="{% if post.alt-bio %}{{ post.alt-bio }}{% else %}/team#person-{{ post.author }}{% endif %}">{{ post.author }}</a>{% endif %}{% if post.meta %} • {{ post.meta }}{% endif %}</p>
<h2><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h2>
{{ post.excerpt }}
</div>
<a href="{{ post.url | prepend: site.baseurl }}">Read More</a>
</article>
{% endfor %}
<a class="button gray" href="{{ '/blog' | prepend: site.baseurl }}">View more blog posts</a>
</div>
{% if site.posts == 0 %}
<section>
<div class="text-content">
<p><em>There's nothing here (yet...)</em></p>
<p>
In the meantime, check out the <a href="https://discordapp.com/invite/aRUAYFN">
Discord Server</a> or subscribe to the mailing list:
</p>
{% include mailinglist.html %}
</div>
</section>
<style> footer { display: none; } </style>
{% endif %}