forked from daattali/daattali.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (81 loc) · 3.78 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
---
layout: page
title: "Hi, I'm Dean"
subtitle: R-Shiny Expert / Software Tool Builder / Extreme Traveller
css: "/css/index.css"
meta-title: "Dean Attali - R-Shiny consultant"
meta-description: "R-Shiny developer and consultant with a MSc in Bioinformatics and a Bachelor of Computer Science. Previously a software engineer at Google, IBM, and Wish.com."
bigimg:
- "/img/big-imgs/costa-rica-house.jpeg" : "Montezuma, Costa Rica (2011)"
- "/img/big-imgs/grouse-grind.jpeg" : "Vancouver, Canada (2014)"
- "/img/big-imgs/hawaii1.jpeg" : "Kauai, HI, USA (2014)"
- "/img/big-imgs/hawaii2.jpeg" : "Kauai, HI, USA (2014)"
- "/img/big-imgs/hongkong-cliff-dive.jpeg" : "Hong Kong (2014)"
- "/img/big-imgs/hongkong-infinity-pool.jpeg" : "Hong Kong (2014)"
- "/img/big-imgs/israel-dive1.jpeg" : "Eilat, Israel (2013)"
- "/img/big-imgs/israel-dive2.jpeg" : "Eilat, Israel (2013)"
- "/img/big-imgs/israel-dive3.jpeg" : "Eilat, Israel (2013)"
- "/img/big-imgs/laos-pond2.jpeg" : "Luang Prabang, Laos (2014)"
- "/img/big-imgs/laos-pond1.jpeg" : "Luang Prabang, Laos (2014)"
- "/img/big-imgs/laos-pond3.jpeg" : "Luang Prabang, Laos (2014)"
- "/img/big-imgs/st-martin.jpeg" : "St Maarten (2014)"
- "/img/big-imgs/tanzania.jpeg" : "Mt Kilimanjaro, Tanzania (2012)"
- "/img/big-imgs/vietnam-beach.jpg" : "Mui Ne, Vietnam (2013)"
- "/img/big-imgs/vietnam-climb.jpeg" : "Cat Ba, Vietnam (2013)"
- "/img/big-imgs/vietnam-climb2.jpeg" : "Cat Ba, Vietnam (2013)"
- "/img/big-imgs/vietnam-dunes.jpeg" : "Mui Ne, Vietnam (2013)"
- "/img/big-imgs/vietnam-dunes2.jpeg" : "Mui Ne, Vietnam (2013)"
- "/img/big-imgs/vietnam-fruits.jpeg" : "Nha Trang, Vietnam (2013)"
- "/img/big-imgs/vietnam-hat.jpeg" : "Hoi An, Vietnam (2013)"
- "/img/big-imgs/vietnam-jump.jpeg" : "Mui Ne, Vietnam (2013)"
- "/img/big-imgs/vietnam-ricefield.jpeg" : "Sapa, Vietnam (2013)"
- "/img/big-imgs/vietnam-scooter.jpeg" : "Da Nang, Vietnam (2013)"
- "/img/big-imgs/vietnam-walk.jpeg" : "Sapa, Vietnam (2013)"
- "/img/big-imgs/california-skydive.jpeg" : "Davis, CA, USA (2008)"
- "/img/big-imgs/california-surf.jpeg" : "Los Angeles, CA, USA (2008)"
- "/img/big-imgs/california-surf2.jpeg" : "Los Angeles, CA, USA (2008)"
- "/img/big-imgs/california-surf3.jpeg" : "Santa Cruz, CA, USA (2009)"
- "/img/big-imgs/costa-rica.jpeg" : "Arenal, Costa Rica (2011)"
- "/img/big-imgs/rio-hanggliding.JPG" : "Rio de Janeiro, Brazil (2015)"
- "/img/big-imgs/hawaii-turtles.jpg" : "Oahu, HI, USA (2016)"
---
<div class="list-filters">
<a href="/" class="list-filter filter-selected">All posts</a>
<a href="/popular" class="list-filter">Most Popular</a>
<a href="/tutorials" class="list-filter">Tutorials</a>
</div>
<div class="posts-list">
{% for post in paginator.posts %}
<article>
<a class="post-preview" href="{{ post.url | prepend: site.baseurl }}">
<h2 class="post-title">{{ post.title }}</h2>
{% if post.subtitle %}
<h3 class="post-subtitle">
{{ post.subtitle }}
</h3>
{% endif %}
<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}}
<span href="{{ post.url | prepend: site.baseurl }}" class="post-read-more">[Read More]</span>
</div>
</a>
</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 %}