Skip to content

Commit 46db023

Browse files
authored
Merge pull request #1 from OzGitelson/main
made things a little nicer
2 parents ce71c75 + 8790074 commit 46db023

File tree

8 files changed

+40
-3
lines changed

8 files changed

+40
-3
lines changed

_config.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ title: Oz Gitelson
2222
email: oz.gitelson@yale.edu
2323
description: >- # this means to ignore newlines until "baseurl:"
2424
Hi, I'm Oz. I'm a junior at Yale pursuing a BS/MS in Computer Science.
25-
outside of classes, I am a researcher in the Social Robotics Lab, where I
25+
Outside of classes, I am a researcher in the Social Robotics Lab, where I
2626
study stress detection and human-robot collaboration.
2727
baseurl: "" # the subpath of your site, e.g. /blog
2828
url: "https://ozgitelson.com" # the base hostname & protocol for your site, e.g. http://example.com
@@ -43,7 +43,8 @@ plugins:
4343

4444
permalink: /:title
4545
header_pages:
46-
- none
46+
- publications.md
47+
- projects.md
4748

4849
# Exclude from processing.
4950
# The following items will not be processed, by default.

_includes/custom-head.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<title>{site.title}|{page.title}</title>
2+
<link rel="icon" type="image/x-icon" href="assets/favicon.png">

_layouts/page.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
layout: base
3+
---
4+
<article class="post">
5+
{% unless page.hide_header %}
6+
<header class="post-header">
7+
<h1 class="post-title">{{ page.title | escape }}</h1>
8+
</header>
9+
{% endunless %}
10+
11+
<div class="post-content">
12+
{{ content }}
13+
</div>
14+
15+
</article>

assets/favicon.png

1.03 KB
Loading

assets/images/headshot.jpeg

1.75 MB
Loading

index.markdown

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,14 @@
33
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
44

55
layout: page
6+
title: About Me
7+
hide_header: true
68
---
7-
Site in progress...
9+
# Hi, I'm Oz
10+
<br>
11+
<div style="display: flex; align-items: flex-start;">
12+
<p style="margin-right: 40px;">I'm a junior at Yale pursuing a BS/MS in Computer Science.
13+
Outside of classes, I am a researcher in the Social Robotics Lab, where I
14+
study stress detection and human-robot collaboration.</p>
15+
<img src="assets/images/headshot.jpeg" alt="Image description" style="width: 300px;">
16+
</div>

projects.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: page
3+
title: Projects
4+
---
5+
coming soon...

publications.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: page
3+
title: Publications
4+
---
5+
coming soon...

0 commit comments

Comments
 (0)