-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
40 lines (33 loc) · 834 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
29
30
31
32
33
34
35
36
37
---
layout: default
title: homepage
---
<header>
<h1 class="content-title">homepage</h1>
</header>
<section id="metapages">
<h2>MetaPages:</h2>
<p>We're starting to get somewhere. Here are the pages related to getting this site up and running:</p>
{% for page in site.pages %}
{% if page.metapage == true %}
<li>
<span>
<a href="{{ page.url | prepend : site.baseurl }}">
{% if page.title == nil %}
{{ page.url }}
{% else %}
{{ page.title }}
{% endif %}
</a>
</span>
</li>
{% endif %}
{% endfor %}
</section>
<section id="new">
<h2>New On the Site:</h2>
{% for page in site.data.all_tags['new'] %}
<a href="{{ page.url | prepend: site.baseurl}}">{{ page.title }}</a>
{{ page.excerpt }}
{% endfor %}
</section>