Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
afrendeiro committed Nov 16, 2024
1 parent 29c8ddb commit aec5c90
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 5 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ serve: build
xdg-open http://0.0.0.0:8000/ & python -m http.server -d docs/

deploy:
git add assets/**/*
git add -u
git commit -m "update"
git push origin main
Expand Down
Binary file added assets/img/2024-04-27-EULIFE_conference.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ def get_publications():
html = requests.get(source).content
soup = bs4.BeautifulSoup(html, "lxml")
pub_list = soup.find_all("ol")[-1]
pub_list.li.decompose() # remove the first <li> (included already in content.yaml:publications)
with open(template_dir / "papers.html", "w") as f:
f.write(str(pub_list))

Expand Down
14 changes: 11 additions & 3 deletions content.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,10 @@ news:
title: "Andre gave a talk at the Department of Mathematics of the University of Oxford, UK"
description: "Thank you for the invitation!"
img: null
2024-04-01:
2024-04-27:
title: "Congratulations to the team for organizing the 2024 EU-LIFE community meeting in Vienna, Austria!"
description: "It was challenging, but a very worth experience to organize the 2024 EU-LIFE community meeting which had the theme of artificial intelligence."
img: null
description: "It was challenging, but a very worthy experience to organize the 2024 EU-LIFE community meeting which had the theme of artificial intelligence."
img: 2024-04-27-EULIFE_conference.jpeg
2024-03-30:
title: "Our 'Marsilea' pre-print is now online!"
description: "Yimin led a work on a framework and tool for an intuitive generalized visualization paradigm for complex datasets. <a href='https://www.biorxiv.org/content/10.1101/2024.02.14.580236v2'>Check if out at BioRxiv</a>!"
Expand Down Expand Up @@ -182,6 +182,13 @@ publications:
<b>Tissue clocks derived from histological signatures of biological aging enable tissue-specific aging predictions from blood.</b>
<br>
BioRxiv (2024). <a href="https://doi.org/10.1101/2024.11.14.618081">doi:10.1101/2024.11.14.618081</a>
2024-04-19:
description: |
Andreas Reicher, Jiří Reiniš, Maria Ciobanu, Pavel Růžička, Monika Malik, Marton Siklos, Viktoriia Kartysh, Tatjana Tomek, Anna Koren, André F. Rendeiro, Stefan Kubicek.
<br>
<b>Pooled multicolor tagging for visualizing subcellular protein dynamics.</b>
<br>
Nature Cell Biology (2024). <a href="https://doi.org/10.1038/s41556-024-01407-w">doi:10.1038/s41556-024-01407-w</a>
2024-03-30:
description: |
Yimin Zheng, Zhihang Zheng, André F. Rendeiro, Edwin Cheung.
Expand All @@ -190,6 +197,7 @@ publications:
<br>
BioRxiv (2024). <a href="https://doi.org/10.1101/2024.02.14.580236">doi:10.1101/2024.02.14.580236</a>
papers: # leave here for compatibility

research:
Expand Down
5 changes: 3 additions & 2 deletions templates/publications.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@
<h3>{{ title }}</h3>
<p>{{ intro }}</p>
<p>{{ content }}</p>
<ul>
<ol reversed="">
{% for id, publication in publications.items()|sort(reverse=True) %}
<li>
{{ publication.description }}
</li>
<br>
{% endfor %}
</ul>
</ol>
<p>{{ outro }}</p>
</div>

Expand Down

0 comments on commit aec5c90

Please sign in to comment.