-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (41 loc) · 1.44 KB
/
index.html
File metadata and controls
43 lines (41 loc) · 1.44 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
---
layout: default
title: jesseyates.com
tags: jesse, yates, jesse yates, jesse k yates, wiki, blog, hbase, HBase, profile, who, homepage, culvert, big data, Hadoop, hadoop, index, bigtable, resume, who
excerpt: Musings on big data, innovative companies, and gritty technical details
---
<!-- Side bar -->
<div class="col-sm-2">
<h1>About Me</h1>
<img class="headshot" src="/images/headshot.jpg"/>
<p>
I like to hang out at the bleeding edge of open source and big data.
</p>
<!--<br/>-->
<p >
Day to day, I'm working the using data to save the world at Tesla.
</p>
<p>
In my freetime I'm also an Ironman triathlete, yogi, foodie and amateur board game maker.
</p>
</div>
<!-- Blog posts -->
<div class="col-lg-8">
<h1>Blog Posts</h1>
<ul class="posts">
{% for post in site.posts %}
<li>
<span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a>
<p>
{% comment %}
supports older posts that have descriptions, but newer (as of 08/22/2015) just leverage the jekyll excerpt(https://jekyllrb.com/docs/posts/#post-excerpts)
{% endcomment %}
{% if post.description != null %}
{% assign text = post.description %}
{% else %}
{% assign text = post.excerpt %}
{% endif %}
{{ text | remove: '<p>' | remove: '</p>' | truncate: 300, "..." }}(<a href="{{ post.url }}">read more</a>)</li>
{% endfor %}
</ul>
</div>