Skip to content

Commit aaf978c

Browse files
committed
refactor(archive): clarify collection taxonomy and labels
1 parent a46f5f6 commit aaf978c

2 files changed

Lines changed: 12 additions & 6 deletions

File tree

_includes/interview-card.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,13 @@ <h3 class="editorial-card-title">
4242
</h3>
4343
{% if interview.interviewees and interview.interviewees.size > 0 %}
4444
<div class="editorial-card-guests">
45-
Featuring: {{ interview.interviewees | join: ", " }}
45+
{% if interview.collection == "UGtastic" %}
46+
Featuring: {{ interview.interviewees | join: ", " }}
47+
{% elsif interview.collection == "SCMC" %}
48+
Speaker: {{ interview.interviewees | join: ", " }}
49+
{% else %}
50+
People: {{ interview.interviewees | join: ", " }}
51+
{% endif %}
4652
</div>
4753
{% endif %}
4854
<div class="editorial-card-actions">

interviews/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ <h2 class="title">A decade of dialogues with the engineers, authors, and communi
2828
<section class="transcription-status-bar">
2929
<span class="status-metric">Archive Status: {{ site.data.archive_transcribed_count }} of {{ interviews.size }} Items Transcribed</span>
3030
<p class="status-note">
31-
This archive is a work in progress. If you spot errors in transcription or have archival context to add, please contact
31+
This collection is a work in progress. If you spot errors in transcription or have archival context to add, please contact
3232
<a href="mailto:mike@just3ws.com">Mike Hall</a>, reach out on
3333
<a href="https://www.linkedin.com/in/just3ws/" target="_blank" rel="noopener">LinkedIn</a>, or
3434
<a href="https://github.com/just3ws/just3ws.github.io/issues" target="_blank" rel="noopener">submit an issue</a> on GitHub.
@@ -38,10 +38,10 @@ <h2 class="title">A decade of dialogues with the engineers, authors, and communi
3838
<nav class="archive-filters no-print" aria-label="Archive Collections">
3939
<span class="filter-label">Browse Collections:</span>
4040
<div class="filter-group">
41-
<button class="filter-btn is-active" data-filter="all">All</button>
42-
<button class="filter-btn" data-filter="UGtastic">UGtastic</button>
43-
<button class="filter-btn" data-filter="SCMC">SCMC</button>
44-
<button class="filter-btn" data-filter="Archive">Archive</button>
41+
<button class="filter-btn is-active" data-filter="all">All Media</button>
42+
<button class="filter-btn" data-filter="UGtastic">UGtastic (Interviews)</button>
43+
<button class="filter-btn" data-filter="SCMC">SCMC (User Group)</button>
44+
<button class="filter-btn" data-filter="Archive">General Archive</button>
4545
</div>
4646
</nav>
4747

0 commit comments

Comments
 (0)