forked from BIOL409/BIOL409.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (58 loc) · 2.11 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
---
layout: page
title: Welcome to Field Ecology Course BIOL409 UBC
subtitle: From the Andes to the Amazon
css: "/css/index.css"
meta-title: "BIOL409"
meta-description: "Explore one of the most biologically diverse regions of the world."
bigimg:
- "/img/big-imgs/Heliangelus.ametysticollis.JPG" : "Amethyst-throated sunangel"
- "/img/big-imgs/Rana.2.JPG" : "Amazonian Frog"
- "/img/big-imgs/Rupicola.JPG" : "Andean Cock-of-the-rock"
- "/img/big-imgs/lowlands.jpg" : "Alto Madre de Dios River"
- "/img/big-imgs/forest.jpg" : "Manu National Park"
- "/img/big-imgs/Cephalopterus.jpg" : "Amazonian Umbrellabird"
- "/img/big-imgs/manakin.jpg" : "Blue-crowned Manakin nesting"
- "/img/big-imgs/pseustes.jpg" : "Puffing snake (Pseustes poecilonotus)"
- "/img/big-imgs/river.jpg" : "Alto Madre de Dios River"
---
<p>Location: Manu Biosphere Reserve, Peru</p>
<p>Date: July 4th - July 22nd, 2016</p>
<div class="span">
Explore one of the most biologically diverse regions of the world in this intensive Field Ecology Course!
</div>
<div class="posts-list">
{% for post in paginator.posts %}
<article class="post-preview">
<a href="{{ post.url | prepend: site.baseurl }}">
<h2 class="post-title">{{ post.title }}</h2>
{% if post.subtitle %}
<h3 class="post-subtitle">
{{ post.subtitle }}
</h3>
{% endif %}
</a>
<p class="post-meta">
Posted on {{ post.date | date: "%B %-d, %Y" }}
</p>
<div class="post-entry">
{{ post.content | truncatewords: 50 | strip_html | xml_escape}}
<a href="{{ post.url | prepend: site.baseurl }}" class="post-read-more">[Read More]</a>
</div>
</article>
{% endfor %}
</div>
{% if paginator.total_pages > 1 %}
<ul class="pager main-pager">
{% if paginator.previous_page %}
<li class="previous">
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">← Newer Posts</a>
</li>
{% endif %}
{% if paginator.next_page %}
<li class="next">
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Older Posts →</a>
</li>
{% endif %}
</ul>
{% endif %}