-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
41 lines (33 loc) · 1.07 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
---
layout: default
title: RhoMobile Blog
---
<div class="navigation" id="nav-above">
<div class="nav-previous"><a href="https://rms.rhomobile.com"><span class="meta-nav">←</span> Back to RhoMobile.com</a></div>
</div>
<h2 class="title">RhoMobile Blog</h2>
<div class="line"></div>
<div class="container_left">
{% for post in site.posts limit:5 %}
<div class="post">
<div class="date">
<span class="month">{{ post.date | date: '%B' }}</span>
<span class="day">{{ post.date | date: '%d' }}</span>
<span>{{ post.date | date: '%Y'}}</span>
</div><!-- END date -->
<div class="post_content">
{{ post.content | truncatewords: 100 }} <br/> (<a class="read_more" href="{{ post.url }}">Read more</a>)
</div><!--END post_content -->
</div>
{% endfor %}
</div>
<div class="container_last">
<h3 class="title_sep">Archive</h3>
<ul id="archive">
{% for post in site.posts %}
<li>
<span>{{ post.date | date_to_string }}</span><h4><a href="{{ post.url }}" title="{{ post.title }}">{{ post.title | truncatewords: 4 }}</a></h4>
</li>
{% endfor %}
</ul>
</div>