-
Notifications
You must be signed in to change notification settings - Fork 32
/
news.html
28 lines (25 loc) · 819 Bytes
/
news.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
---
layout: page
title: News
permalink: /news/
headerTitle: Get the latest on what we're doing
headerSubCopy: Catch up with us anytime, anywhere
custom_head_owl: true
---
{% include global-header.html %}
<div class="container">
<p>Get the latest informaiton, here we even AJAX a remote API to get the next rocket launch to prove static sites can be dynamic!</p>
<div class="well">
<!-- Show people static sites can contain live informaiton!!! -->
{% include next-launch.html %}
</div>
{% for post in site.posts %}
<div class="post-area">
<a href="{{ post.url | prepend: site.baseurl }}" class="bold">{{ post.title }}</a>
<p class="post-date">{{ post.date | date_to_long_string }}</p>
<p>
{{ post.content | strip_html | truncatewords: 50 }}
</p>
</div>
{% endfor %}
</div>