forked from poole/poole
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (34 loc) · 913 Bytes
/
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
---
layout: default
title: Home
---
<!--
<div class="posts">
{% for post in paginator.posts %}
<article class="post">
<h1 class="post-title">
<a href="{{ post.url | relative_url }}">
{{ post.title }}
</a>
</h1>
<time datetime="{{ post.date | date_to_xmlschema }}" class="post-date">{{ post.date | date_to_string }}</time>
{{ post.content }}
</article>
{% endfor %}
</div> -->
<h3>Overview</h3>
<p>
Brinley Macnamara is Software Engineer at Meta, working on the operating system UI for Virtual Reality headsets.
She received a B.S. in Computer Science from Tufts University.
</p>
<h3>Contact Info</h3>
<p>Email: brinley.macnamara@gmail.com</p>
<h3>Thoughts</h3>
<ul>
{% for post in site.posts %}
<li>
<span>{{ post.date | date_to_string }} - </span>
<a href="{{ post.url | relative_url }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>