-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnews.html
More file actions
34 lines (28 loc) · 838 Bytes
/
news.html
File metadata and controls
34 lines (28 loc) · 838 Bytes
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
---
title: Anthem Engineering | Software & System Solutions
category: pages
---
{% include header.html %}
<body>
<div class="bg-white wrapper">
{% include responsive-nav.html %}
<header id="news">
{% include standard-nav.html %}
</header>
<div class="content light-square">
<div class="grid">
<div class="centered m50">
<h1 class="text-center">News</h1>
</div>
<div class="row sage">
{% for post in site.posts %}
<h2 class="post-title"><a href="{{ post.url }}">{{ post.title }}</a></h2>
<p class="post-date">{{ post.date | date_to_string }}</p>
{{ post.excerpt }}
<p><a href="{{ post.url }}">Read more...</a></p>
{% endfor %}
</div>
</div>
</div>
</div>
{% include footer.html %}