Skip to content

Commit

Permalink
Updated Basic Settings
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewYiBC committed Nov 4, 2024
1 parent 3ec781a commit 06c18a6
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 37 deletions.
32 changes: 16 additions & 16 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,48 +8,48 @@

# Basic Site Settings
locale : "en-US"
title : "Your Name / Site Title"
title : ""
title_separator : "-"
name : &name "Your Name"
description : &description "personal description"
url : https://academicpages.github.io # the base hostname & protocol for your site e.g. "https://mmistakes.github.io"
name : &name ""
description : &description ""
url : https://AndrewYiBC.github.io # the base hostname & protocol for your site e.g. "https://mmistakes.github.io"
baseurl : "" # the subpath of your site, e.g. "/blog"
repository : "academicpages/academicpages.github.io"
repository : "AndrewYiBC/AndrewYiBC.github.io"

# Site Author - The following control what appear as part of the author content on the side bar.
# If a field is blank the icon and link will not appear, otherwise it will be shown.
# Additional customization can be done by editing /_includes/author-profile.html
author:
# Biographic information
avatar : "profile.png"
name : "Your Sidebar Name"
pronouns : # example: "she/her"
bio : "Short biography for the left-hand sidebar"
location : "Earth"
employer : "Red Brick University"
name : "Yutong (Andrew) Yi"
pronouns : "he/him"
bio : "Yale M.S. in Computer Science '24\nUCLA B.S. in Math of Comp '23"
employer : "Yale University"
location : "New Haven, CT"
uri : # URL
email : "[email protected]"
email : "andrew.yi [at] yale.edu"

# Academic websites
arxiv : # URL - Update with the correct link to your profile
googlescholar : "https://scholar.google.com/citations?user=PS_CX0AAAAAJ"
googlescholar : # URL
impactstory : # URL
orcid : "http://orcid.org/yourorcidurl"
orcid : # URL
semantic : # URL
pubmed : "https://www.ncbi.nlm.nih.gov/pubmed/?term=john+snow"
pubmed : # URL
researchgate : # URL
scopus : # URL

# Repositories and software development
bitbucket : # Username - Update with your username on the site
codepen : # Username
dribbble : # Username
github : "academicpages"
github : "AndrewYiBC"
kaggle : # Username
stackoverflow : # User number or user number and name (i.e., use "1" or "1/jeff-atwood")

# Social media
bluesky : "bsky.app" # Replace this with you Bluesky username
bluesky : # Replace this with you Bluesky username
facebook : # Username
flickr : # Username
foursquare : # Username
Expand Down
28 changes: 14 additions & 14 deletions _data/navigation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,23 @@
# prevent it from being included in the site.

main:
- title: "Publications"
url: /publications/
# - title: "Publications"
# url: /publications/

- title: "Talks"
url: /talks/
# - title: "Talks"
# url: /talks/

- title: "Teaching"
url: /teaching/
# - title: "Teaching"
# url: /teaching/

- title: "Portfolio"
url: /portfolio/
# - title: "Portfolio"
# url: /portfolio/

- title: "Blog Posts"
url: /year-archive/
# - title: "Blog Posts"
# url: /year-archive/

- title: "CV"
url: /cv/
# - title: "CV"
# url: /cv/

- title: "Guide"
url: /markdown/
# - title: "Guide"
# url: /markdown/
17 changes: 10 additions & 7 deletions _includes/author-profile.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,35 +6,38 @@

<div itemscope itemtype="http://schema.org/Person">

<div class="author__avatar">
<!-- <div class="author__avatar">
{% if author.avatar contains "://" %}
<img src="{{ author.avatar }}" alt="{{ author.name }}">
{% else %}
<img src="{{ author.avatar | prepend: "/images/" | prepend: base_path }}" class="author__avatar" alt="{{ author.name }}">
{% endif %}
</div>
</div> -->

<div class="author__content">
<h3 class="author__name">{{ author.name }}</h3>
{% if author.pronouns %}<p class="author__pronouns">{{ author.pronouns }}</p>{% endif %}
{% if author.bio %}<p class="author__bio">{{ author.bio }}</p>{% endif %}
{% if author.bio %}<p class="author__bio" style="white-space: pre-line">{{ author.bio }}</p>{% endif %}
</div>

<div class="author__urls-wrapper">
<button class="btn btn--inverse">Follow</button>
<ul class="author__urls social-icons">
<!-- Font Awesome icons / Biographic information -->
{% if author.location %}
<li class="author__desktop"><i class="fa-solid fa-location-dot icon-pad-right" aria-hidden="true"></i>{{ author.location }}</li>
{% endif %}
{% if author.employer %}
<li class="author__desktop"><i class="fas fa-fw fa-building-columns icon-pad-right" aria-hidden="true"></i>{{ author.employer }}</li>
{% endif %}
{% if author.location %}
<li class="author__desktop"><i class="fa-solid fa-location-dot icon-pad-right" aria-hidden="true"></i>{{ author.location }}</li>
{% endif %}
{% if author.uri %}
<li><a href="{{ author.uri }}"><i class="fas fa-fw fa-link icon-pad-right" aria-hidden="true"></i>{{ site.data.ui-text[site.locale].website_label | default: "Website" }}</a></li>
{% endif %}
{% if author.email %}
<!-- {% if author.email %}
<li><a href="mailto:{{ author.email }}"><i class="fas fa-fw fa-envelope icon-pad-right" aria-hidden="true"></i>{{ site.data.ui-text[site.locale].email_label | default: "Email" }}</a></li>
{% endif %} -->
{% if author.email %}
<li class="author__desktop"><i class="fas fa-fw fa-envelope icon-pad-right" aria-hidden="true"></i></i>{{ author.email }}</li>
{% endif %}

<!-- Font Awesome and Academicons icons / Academic websites -->
Expand Down

0 comments on commit 06c18a6

Please sign in to comment.