forked from daattali/beautiful-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (67 loc) · 2.61 KB
/
index.html
File metadata and controls
72 lines (67 loc) · 2.61 KB
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
---
layout: page
title: "Simply Data"
subtitle: Making Advanced Data Analysis easy to understand
css: "/css/index.css"
meta-title: "Davis Townsend - Business Analyst"
meta-description: "Senior Analyst at EA. MS Business Analytics and BA Economics from UT Austin"
bigimg:
- "/img/big-imgs/abstract-art-blur-373543.jpg" : ""
- "/img/big-imgs/airport-bank-board-534216.jpg" : ""
- "/img/big-imgs/altitude-architecture-business-cabinet-325229.jpg" : ""
- "/img/big-imgs/black-coffee-cellphone-coffee-860379.jpg" : ""
- "/img/big-imgs/bridge-california-cliff-7653.jpg" : ""
- "/img/big-imgs/altitude-blue-sky-clouds-530158.jpg" : ""
- "/img/big-imgs/city-hd-wallpaper-lights-5443.jpg" : ""
- "/img/big-imgs/cc0-desktop-backgrounds-fog-7919.jpg" : ""
- "/img/big-imgs/clouds-dawn-dusk-46253.jpg" : ""
- "/img/big-imgs/clouds-daylight-forest-592077.jpg" : ""
- "/img/big-imgs/imgix-391813-unsplash.jpg" : ""
- "/img/big-imgs/jesse-orrico-60373-unsplash.jpg" : ""
- "/img/big-imgs/markus-spiske-507983-unsplash.jpg" : ""
- "/img/big-imgs/nasa-43563-unsplash.jpg" : ""
- "/img/big-imgs/nathan-anderson-143022-unsplash.jpg" : ""
- "/img/big-imgs/cliffs-climbing-clouds-746421.jpg" : ""
- "/img/big-imgs/spacex-549326-unsplash.jpg" : ""
---
<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>
<a href="/tags" class="list-filter">Index</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 %}