-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·30 lines (22 loc) · 940 Bytes
/
index.html
File metadata and controls
executable file
·30 lines (22 loc) · 940 Bytes
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
---
layout: default
---
<section>
<p><strong>Hello Traveler.</strong></p>
<p>My name is <strong>Lucas Paulger</strong> and I'm a software engineer currently working with <a href="https://www.jpmorgan.com">J.P. Morgan</a>. Living and working in wonderful <strong>London, UK</strong>.</p>
<p>I'm originally from <a href="https://en.wikipedia.org/wiki/Vermont">Vermont, USA</a> but have also called <a href="https://en.wikipedia.org/wiki/Cluj-Napoca">Cluj-Napoca, Romania</a> home as well.</p>
<p>Get in touch via <a href="mailto:lucas.paulger@gmail.com">e-mail</a> or <a href="https://twitter.com/{{ site.twitter_username }}">Twitter</a>.</p>
<hr>
<ul>
{% for post in site.posts %}
<li>
<div class="post-date">
<span>{{ post.date | date: "%b %d, %Y" }}</span>
</div>
<div class="title">
<a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</div>
</li>
{% endfor %}
</ul>
</section>