forked from pebble-dev/pebble-dev.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·46 lines (43 loc) · 1.58 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
---
layout: default
title: "Rebble"
date: 2015-06-12 11:56:42
permalink: /
---
<div class="home-container">
<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 page.author %} • {{ page.author }}{% endif %}{% if page.meta %} • {{ page.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 %}