-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (23 loc) · 1.04 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
---
layout: default
---
<h1 class="site-title">mGBA</h1>
<div class="home">
<p class="big-info">Latest Release: <a href="{% link downloads.markdown %}">{{ site.data.releases["mGBA"][-1].release }}</a></p>
{% assign newbuild = site.data.builds["mGBA"][0] %}
<p class="big-info">Latest Development Version: <a href="{% link downloads.markdown %}#development-downloads">{{ newbuild.rev }}-{{ newbuild.hash | slice: 0, 9 }}</a></p>
<ul class="posts">
{% for post in paginator.posts %}
<li>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
<span class="post-date">{{ post.date | date: "%b %-d, %Y" }}</span>
<article class="post-content">{{ post.excerpt}}</article>
{% if post.content contains '<!--more-->' %}
<a class="readmore" href="{{ post.url | prepend: site.baseurl }}">Read more</a>
{% endif %}
</li>
{% endfor %}
</ul>
{% include paginate.html %}
<p class="rss-subscribe">Subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
</div>