-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (79 loc) · 3.02 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
---
# Feel free to add content and custom Front Matter to this file.
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
layout: default
---
<section class="Home__Intro">
<div class="container-fluid">
<div class="row">
<div class="col-xs-12 col-md-2">
{% include side_navigation.html %}
</div>
<div class="col-xs-12 col-md-7">
<figure class="mb-6">
<img src="/images/meditate-04.jpg" />
<figcaption class="font-meta font-xs">
<em>
The way you can go isn't the real way. The name you can say
isn't the real name.
</em> — Lao Tzu (transl. Ursula K. Le Guin)
</figcaption>
</figure>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-xs-12 col-md-7 col-md-offset-2">
<h2 class="underlined">Paul Mederos</h2>
<p class="line-lg">
Hi, I'm Paul! 👋 I'm into longevity, design, entrepreneurship,
engineering, gaming, coffee, chocolate, being a dad, and good vibes 🌈
</p>
<p class="line-lg">
Currently, I support emerging ventures at <a href="https://www.quanata.com" target="_blank">Quanata</a> (goal: dramatically reduce auto accidents);
angel invest through <a href="https://www.adventure.fund" target="_blank">Adventure Fund</a>;
I'm doing discovery on a handful of early stage opportunities in healthcare;
and I'm raising two wild, incredible, kind, and loving kids at home 🌱
</p>
<p class="line-lg">
Previously, I ran a <a href="https://www.enchant.co" target="_blank">product studio</a> for wellness startups, brought personalized nutrition to life
at <a href="https://www.territoryfoods.com" target="_blank">Territory Foods</a>, and kicked-off the global
parkour & freerunning movement at <a href="http://www.americanparkour.com" target="_blank">American Parkour</a> ☀️🥗🤸♀️
</p>
</div>
</div>
</div>
</section>
<section class="Home__Essays Home__Work">
<div class="container-fluid">
<div class="row">
<div class="col-xs-12 col-md-8 col-md-offset-2">
<h2 class="underlined mb-6">Work</h2>
</div>
</div>
<ul class="omg-so-many-posts">
{% for post in site.posts %}
{% if post.categories contains 'case_study' %}
{% include post_item.html post=post %}
{% endif %}
{% endfor %}
</ul>
</div>
</section>
<section class="Home__Essays Home__Writing">
<div class="container-fluid">
<div class="row">
<div class="col-xs-12 col-md-8 col-md-offset-2">
<h2 class="underlined mb-6">Writing</h2>
</div>
</div>
<ul class="omg-so-many-posts">
{% for post in site.posts %}
{% if post.categories contains 'journal' or post.categories contains 'essay' %}
{% include post_item.html post=post %}
{% endif %}
{% endfor %}
</ul>
</div>
</section>