Skip to content

Commit

Permalink
updated pictures and bib
Browse files Browse the repository at this point in the history
  • Loading branch information
wulfdewolf committed Feb 13, 2024
1 parent 8cdc30e commit 3c0361e
Show file tree
Hide file tree
Showing 10 changed files with 2,849 additions and 2,874 deletions.
7 changes: 6 additions & 1 deletion _bibliography/convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ def add_field_if_author_in_entry(bibtex_path, author_name, new_field, new_field_

for entry in bib_database.entries:
if 'author' in entry and author_name in entry['author']:
entry[new_field] = new_field_value
if new_field not in entry:
entry[new_field] = new_field_value
else:
entry[new_field] = entry[new_field] + " x " + new_field_value

with open(bibtex_path, 'w') as bibtex_file:
bibtexparser.dump(bib_database, bibtex_file)
Expand All @@ -17,3 +20,5 @@ def add_field_if_author_in_entry(bibtex_path, author_name, new_field, new_field_
# Usage
add_field_if_author_in_entry(
'papers.bib', 'Nolan', 'abbr', 'NOLAN')
add_field_if_author_in_entry(
'papers.bib', 'Gulsen', 'abbr', 'SÜRMELI')
5,697 changes: 2,834 additions & 2,863 deletions _bibliography/papers.bib

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,7 @@ discord_id: # your discord id (18-digit unique numerical identifier)
zotero_username: # your zotero username
wechat_qr: # filename of your wechat qr-code saved as an image (e.g., wechat-qr.png if saved to assets/img/wechat-qr.png)

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

# -----------------------------------------------------------------------------
# Analytics and search engine verification
Expand Down
2 changes: 1 addition & 1 deletion _includes/header.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
</progress>
{% endif %}
{% if site.banner %}
<img src="{{site.banner}}" class="banner" alt="Banner Image">
<img src="/{{site.banner}}" class="banner" alt="Banner Image">
{% endif %}
<style>
.banner {
Expand Down
12 changes: 6 additions & 6 deletions _pages/people.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,27 @@ permalink: /people/
title: people
description: members of the lab or group
nav: true
nav_order: 7
nav_order: 2

profiles_pi:
# if you want to include more than one profile, just replicate the following block
# and create one content file for each profile inside _pages/
- align: left
image: prof_pic.jpg
image: people/gulsen.jpg
content: people/template.md
image_circular: false # crops the image to make it circular
more_info: >
<p>Matt Nolan</p>
<p>Gulsen Sürmeli</p>
- align: left
image: prof_pic.jpg
image: people/matt.jpg
content: people/template.md
image_circular: false # crops the image to make it circular
more_info: >
<p>Gulsen Surmeli</p>
<p>Matt Nolan</p>
profiles_postdoc:
- align: left
image: prof_pic.jpg
image: people/harry.jpg
content: people/harry.md
image_circular: false # crops the image to make it circular
more_info: >
Expand Down
2 changes: 1 addition & 1 deletion _pages/publications.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ permalink: /publications/
title: publications
description: the full list of the lab's publications!
nav: true
nav_order: 2
nav_order: 3
---

<!-- _pages/publications.md -->
Expand Down
File renamed without changes.
File renamed without changes
File renamed without changes
Binary file added assets/img/people/matt.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 3c0361e

Please sign in to comment.