Skip to content

Commit

Permalink
Adding link to public resume
Browse files Browse the repository at this point in the history
  • Loading branch information
pecey committed Jan 27, 2023
1 parent bec6668 commit c84cce5
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 7 deletions.
6 changes: 4 additions & 2 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description: > # the ">" symbol means to ignore newlines until "footer_text:"
A simple, whitespace theme for academics. Based on [*folio](https://github.com/bogoli/-folio) design.
footer_text: >
Powered by <a href="http://jekyllrb.com/" target="_blank">Jekyll</a> with <a href="https://github.com/alshedivat/al-folio">al-folio</a> theme.
Hosted by <a href="https://pages.github.com/" target="_blank">GitHub Pages</a>.
Last updated:
icon: 🔥 # the emoji used as the favicon
url: # the base hostname & protocol for your site
Expand Down Expand Up @@ -59,6 +59,8 @@ wikidata_id: # your wikidata id

contact_note: # > You can even add a little note about which of these is the best way to reach you.

resume_link: https://github.com/pecey/PublicResume/blob/main/Palash_Chatterjee_Public_Resume.pdf

google_analytics: UA-XXXXXXXXX # out your google-analytics code
panelbear_analytics: XXXXXXXXX # panelbear analytics site ID

Expand Down Expand Up @@ -171,7 +173,7 @@ enable_math: true # enables math typesetting (uses MathJax)
enable_tooltips: false # enables automatic tooltip links generated
# for each section titles on pages and posts
enable_darkmode: true # enables switching between light/dark modes
enable_navbar_social: false # enables displaying social links in the
enable_navbar_social: true # enables displaying social links in the
# navbar on the about page
enable_project_categories: true # enables categorization of projects into
# multiple categories
Expand Down
6 changes: 6 additions & 0 deletions _includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,12 @@
</a>
</li>
{% endif %}
<!-- Resume -->
<li class="nav-item">
<a class="nav-link" href="{{ site.resume_link }}" target="_blank">
resume
</a>
</li>
<!-- Other pages -->
{% assign sorted_pages = site.pages | sort: "title" %}
{% for p in sorted_pages %}
Expand Down
4 changes: 2 additions & 2 deletions _pages/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ profile:
news: true # includes a list of news items
selected_papers: false # includes a list of papers marked as "selected={true}"
social: true # includes social icons at the bottom of the page
social: false # includes social icons at the bottom of the page
---

I am a first year Ph.D. student at [Indiana University](https://www.indiana.edu/) and am currently working with [Roni Khardon](https://scholar.google.com/citations?user=ymCi4oEAAAAJ&hl=en&oi=ao) on stochastic online planning and learning.
I am a second year Ph.D. student at [Indiana University](https://www.indiana.edu/) and am currently working with [Roni Khardon](https://scholar.google.com/citations?user=ymCi4oEAAAAJ&hl=en&oi=ao) on stochastic online planning and learning.

Previously, I worked for a couple of years at [ThoughtWorks Technologies](https://www.thoughtworks.com/) as a software consultant.
3 changes: 2 additions & 1 deletion _sass/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,9 @@ a, table.table a {
.navbar-brand.social {
padding-bottom: 0;
padding-top: 0;
font-size: 1.7rem;
font-size: 1.25rem;
a {
padding: 0 5px;
i::before {
color: var(--global-text-color);
-webkit-transition: all 0.2s ease-in-out;
Expand Down
11 changes: 9 additions & 2 deletions _sass/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ $pink-color-light: #ffdddd !default;
$yellow-color: #efcc00 !default;

$grey-color: #828282 !default;
$grey-color-light: lighten($grey-color, 40%);
$grey-color-dark: darken($grey-color, 25%);
$grey-color-light: lighten($grey-color, 45%);
$grey-color-dark: darken($grey-color, 45%);

$white-color: #ffffff !default;
$black-color: #000000 !default;
Expand All @@ -36,3 +36,10 @@ $black-color: #000000 !default;
$code-bg-color-light: rgba($purple-color, 0.05);
$code-bg-color-dark: #2c3237 !default;

$theme-light-color: #0000d0 !default;
$theme-light-color-hover: lighten($theme-light-color, 15%);
$code-bg-color-light: lighten($theme-light-color, 50%);

$theme-dark-color: #00f1ff !default;
$theme-dark-color-hover: lighten($theme-dark-color, 15%);
$code-bg-color-dark: darken($theme-dark-color, 50%);

0 comments on commit c84cce5

Please sign in to comment.