Skip to content

Commit dbdbe01

Browse files
committed
add article and reorganize publication section
1 parent 980bb46 commit dbdbe01

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

_about/publications.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,17 @@ section_order: 7
66

77
## Where can I learn more?
88

9-
We've presented and written ***a lot*** about CollectionBuilder. Below is a list of our publications, workshops, and presentations.
9+
We've presented and written **_a lot_** about CollectionBuilder. Below is a list of our publications, workshops, and presentations.
1010

1111
{% capture publications %}
12-
{% for p in site.data.cb-publications %}
13-
- *{{ p.type }}:* {{ p.authors }}, **"{{ p.title }}"**, {{ p.publication }}, {{ p.date }}{% if p.link %}, <{{ p.link }}>{% endif %}{% endfor %}
12+
{% assign pubs = site.data.cb-publications | where: 'type','Article' %}
13+
{% for p in pubs %}
14+
- {{ p.authors }}, **"{{ p.title }}"**, {{ p.publication }}, {{ p.date }}{% if p.link %}, <{{ p.link }}>{% endif %}{% endfor %}
1415
{% endcapture %}
15-
{% include bootstrap/card.md title="CollectionBuilder Presentations" text=publications %}
16+
{% include bootstrap/card.md title="CollectionBuilder Publications" text=publications %}
1617

18+
{% capture presentations %}
19+
{% for p in site.data.cb-publications %}{% unless p.type == "Article" %}
20+
- *{{ p.type }}:* {{ p.authors }}, **"{{ p.title }}"**, {{ p.publication }}, {{ p.date }}{% if p.link %}, <{{ p.link }}>{% endif %}{% endunless %}{% endfor %}
21+
{% endcapture %}
22+
{% include bootstrap/card.md title="CollectionBuilder Presentations and Workshops" text=presentations %}

_data/cb-publications.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
type,authors,title,publication,date,link
2+
Article,Olivia Wikle and Evan Peter Williamson,Static Web Methodology as a Sustainable Approach to Digital Humanities Projects,Code4Lib Journal 60,2025,https://journal.code4lib.org/articles/18372
23
Article,"Olivia Wikle, Devin Becker, and Evan Peter Williamson","The Static Advantage: Increased Agility and Sustainability of Static-Web-Driven Development for Digital Humanities Projects","Routledge Companion to Libraries, Archives, and the Digital Humanities",2024,https://doi.org/10.4324/9781003327738
34
Workshop,"Olivia Wikle, Evan Peter Williamson, and Devin Becker","Unique Exhibits and Minimal Infrastructure: Creating Static Digital Collections With CollectionBuilder and GitHub Pages",Code4Lib conference,2024,https://osf.io/g9z8q
45
Presentation,"Evan Peter Williamson and Julia Stone","CollectionBuilder: A Sustainable Approach for Creating Digital Collections and Unique Exhibits",Northwest Archivists Annual,2024,https://osf.io/ec2rn

0 commit comments

Comments
 (0)