Skip to content

Commit

Permalink
Merge pull request #94 from odcambc/tags
Browse files Browse the repository at this point in the history
Adds initial support for tags in posts
  • Loading branch information
odcambc committed Jun 3, 2023
2 parents b230872 + d67c992 commit 2d96c1e
Show file tree
Hide file tree
Showing 14 changed files with 49 additions and 1 deletion.
2 changes: 2 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,5 @@ collections:
output: true
pets:
output: true
tags:
output: true
15 changes: 15 additions & 0 deletions _layouts/tags.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
layout: post
---

<div>
<h1>Articles tagged with "{{ page.tag-name }}"</h1>
<ul style='padding-top: 16px;'>

{% for post in site.posts %}
{% if post.tags contains page.tag-name %}
<li><a href="{{ post.url }}">{{ post.title }}</a>, published {{ post.date | date: "%Y-%m-%d" }}</li>
{% endif %}
{% endfor %}
</ul>
</div>
1 change: 1 addition & 0 deletions _posts/2022-04-08-DEIJ-Journal-Club.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ title: Fraser Lab DEIJ Journal Club - Land Acknowledgments
author: Roberto Efraín (Robbie) Díaz
layout: post
group: news
tags: deij_jc
---
**Background**
<br>
Expand Down
1 change: 1 addition & 0 deletions _posts/2022-05-06-DEIJ-Journal-Club.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ title: Fraser Lab DEIJ Journal Club - The Minority Tax
author: Stephanie Wankowicz
layout: post
group: news
tags: deij_jc
---
**Background**
<br>
Expand Down
2 changes: 1 addition & 1 deletion _posts/2022-05-10-structural-bioinformatics.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ title: So you want to do a structural bioinformatic analysis…
author: Stephanie Wankowicz
layout: post
group: news
tag: how_to
---



Over the past two years I have done a bunch of structural bioinformatic work, resulting in the paper [Ligand binding remodels protein side chain conformational heterogeneity](https://elifesciences.org/articles/74114). And I made A LOT of mistakes.

Below are many of the lessons, guidelines, and pitfalls for a structural bioinformatic analysis. While many of the principles below are specifically tailored to a paired analysis (such as apo versus holo or peptide bound versus small molecule bound), these guidelines can help with any structural bioinformatics project.
Expand Down
1 change: 1 addition & 0 deletions _posts/2022-06-10-DEIJ-Journal-Club.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ title: Fraser Lab DEIJ Journal Club - Examining the STEM Pipeline Metaphor
author: Christian Macdonald
layout: post
group: news
tags: deij_jc
---
**Background**
<br>
Expand Down
1 change: 1 addition & 0 deletions _posts/2022-07-15-DEIJ-Journal-Club.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ title: Fraser Lab DEIJ Journal Club - Implicit Gender Bias
author: Stephanie Wankowicz
layout: post
group: news
tags: deij_jc
---
**Background**
<br>
Expand Down
1 change: 1 addition & 0 deletions _posts/2022-08-08-Multi-state-models-from-PanDDA.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ title: Multi-state models from PanDDA
author: Galen Correy
layout: post
group: news
tags: how_to
---
### Background

Expand Down
1 change: 1 addition & 0 deletions _posts/2022-08-14-DEIJ-Journal-Club.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ title: Fraser Lab DEIJ Journal Club - Peer Review
author: Roberto Efraín (Robbie) Díaz
layout: post
group: news
tags: deij_jc
---
**Background**
<br>
Expand Down
1 change: 1 addition & 0 deletions _posts/2022-09-16-DEIJ-Journal-Club.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ title: Fraser Lab DEIJ Journal Club - Socioeconomic roots of academic faculty
author: Christian Macdonald
layout: post
group: news
tags: deij_jc
---
**Background**
<br>
Expand Down
1 change: 1 addition & 0 deletions _posts/2022-11-4-DEIJ-Journal-Club.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ title: Fraser Lab DEIJ Journal Club - Blinding Grant Peer Review
author: Eric Greene
layout: post
group: news
tags: deij_jc
---
**Background**
<br>
Expand Down
4 changes: 4 additions & 0 deletions _tags/deij_jc.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
layout: tags
tag-name: deij_jc
---
4 changes: 4 additions & 0 deletions _tags/how_to.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
layout: tags
tag-name: how_to
---
15 changes: 15 additions & 0 deletions tags/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
title: Posts from the Fraser Lab sorted by tag
layout: post
group: tags
---

<ul>
{% for tag in site.tags %}
{% assign tag_slug = tag.tag-name | slugify: "raw" %}
<li>
<h2><a class="tag-link" href={{ site.baseurl | append: "/tags/" | append: tag_slug | append: "/" }}
rel="category tag">{{ tag.tag-name }}</h2>
</li>
{% endfor %}
</ul>

0 comments on commit 2d96c1e

Please sign in to comment.