Skip to content

Commit

Permalink
update resume style to not include title
Browse files Browse the repository at this point in the history
  • Loading branch information
batra-aarav committed Feb 27, 2025
1 parent 14e8820 commit e397ac4
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
_site/
.sass-cache/
.jekyll-metadata
vendor/
/vendor
.bundle/
.jekyll-cache/
20 changes: 10 additions & 10 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ GEM
http_parser.rb (~> 0)
eventmachine (1.2.7)
ffi (1.17.1)
ffi (1.17.1-aarch64-linux-gnu)
ffi (1.17.1-aarch64-linux)
ffi (1.17.1-aarch64-linux-musl)
ffi (1.17.1-arm-linux-gnu)
ffi (1.17.1-arm-linux)
ffi (1.17.1-arm-linux-musl)
ffi (1.17.1-arm64-darwin)
ffi (1.17.1-x86-linux-gnu)
ffi (1.17.1-x86-linux)
ffi (1.17.1-x86-linux-musl)
ffi (1.17.1-x86_64-darwin)
ffi (1.17.1-x86_64-linux-gnu)
ffi (1.17.1-x86_64-linux)
ffi (1.17.1-x86_64-linux-musl)
forwardable-extended (2.6.0)
http_parser.rb (0.8.0)
Expand Down Expand Up @@ -60,7 +60,7 @@ GEM
mercenary (0.4.0)
pathutil (0.16.2)
forwardable-extended (~> 2.6)
public_suffix (6.0.1)
public_suffix (5.1.1)
rb-fsevent (0.11.2)
rb-inotify (0.11.1)
ffi (~> 1.0)
Expand All @@ -75,16 +75,16 @@ GEM
webrick (1.9.1)

PLATFORMS
aarch64-linux-gnu
aarch64-linux
aarch64-linux-musl
arm-linux-gnu
arm-linux
arm-linux-musl
arm64-darwin
ruby
x86-linux-gnu
x86-linux
x86-linux-musl
x86_64-darwin
x86_64-linux-gnu
x86_64-linux
x86_64-linux-musl

DEPENDENCIES
Expand All @@ -98,4 +98,4 @@ DEPENDENCIES
webrick (~> 1.7)

BUNDLED WITH
2.6.4
2.4.22
15 changes: 10 additions & 5 deletions _docs/about/résumé.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,18 @@
title: Résumé
category: About
order: 2
hide_title: true
---
<p align="center">
<h1> <b>Aarav Batra</b></h1>

<h2>[email protected]</h2>
<h2>+1 (848) 448-6348</h2>
<h2>East Brunswick, New Jersey</h2>
<br>
<p align="center" style="margin-bottom: 0;">
<h1><b>Aarav Batra</b></h1>
<br>
<h2 style="text-align: left; font-size: clamp(10px, 2vw, 20px); margin-top: 0;">
<span style="display: inline-block;">[email protected]</span> ❖
<span style="display: inline-block;">(848) 448-6348</span> ❖
<span style="display: inline-block;">East Brunswick, New Jersey</span>
</h2>
</p>

<h3>SKILLS & INTERESTS</h3>
Expand Down
6 changes: 5 additions & 1 deletion _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,14 @@ <h1>
</header>

<section class="main">
{% unless page.hide_title %}
<div class="page-header">
<h2>{% if page.category %}{{ page.category }}{% else %}{{ site.title }}{% endif %}</h2>
<h2>
{% if page.category %}{{ page.category }}{% endif %}
</h2>
<h3>{{ page.title }}</h3>
</div>
{% endunless %}
<article class="content">
{{ content }}
</article>
Expand Down

0 comments on commit e397ac4

Please sign in to comment.