-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
28 lines (23 loc) · 929 Bytes
/
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
---
# Feel free to add content and custom Front Matter to this file.
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
layout: page
---
<section class="hero">
<div class="contain">
<p class="hero__text">RailsInstaller is the quickest way to go from zero to developing Ruby on Rails applications. Whether you're on Windows or Mac, RailsInstaller has you covered.</p>
<a href="https://github.com/railsinstaller/railsinstaller-windows/releases/tag/v4.0.0-alpha" target="_blank" class="button">Download RailsInstaller</a>
</div>
</section>
<section class="news">
<div class="contain">
<h2>News</h2>
{% for post in site.posts limit:5 %}
<article>
<h3>{{ post.title | escape }}</h3>
<p>{{ post.content }}</p>
<span class="date">{{ post.date | date: "%Y-%m-%d" }}</span>
</article>
{% endfor %}
</div>
</section>