forked from hyperspacedev/hyperspacedev.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (34 loc) · 1.34 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
---
title: Homepage
layout: product
product:
title: Meet the fluffiest client for the fediverse.
detail: "The next generation of the fluffiest client for the fediverse* is here. With new features ranging from custom themes and multi-user support to complete customization for developers and IT administrators, Hyperspace is the best Mastodon client yet."
image: "./assets/images/homepage-hero.png"
action:
name: Try it Online
link: "https://hyperspaceapp.herokuapp.com"
---
<div class="section">
<h1>Latest posts</h1>
<div class="post-list-grid">
{% for post in site.posts limit:3 %}
{% assign author = site.data.team[post.author] %}
<a href="{{ post.url }}">
<div class="plist-card">
<div class="plist-background">
<img class="plist-image" src="{{ author.mastodon.image }}"/>
</div>
<div class="plist-content">
<h3>{{ post.title }}</h3>
<p>Written {{ post.date | date: '%B %d, %Y' }}</p>
<p>{{ post.excerpt | strip_html | truncate: 140 }}</p>
</div>
</div>
</a>
{% endfor %}
</div>
</div>
<div class="section">
<small>*Hyperspace currently doesn't offer support for users of the Gab platform.</small>
</div>