Skip to content
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
0b2482e
Initial attempt to create individual pages for the Bibliography entries.
MattHeffron Apr 15, 2025
f212723
Improved, but still work in progress.
MattHeffron Apr 16, 2025
f346a50
Update github action to set bibSplit.pl executable
stumbo May 22, 2025
10c52d2
Publications Page -- work in progress
stumbo Jun 27, 2025
f1af633
WIP
stumbo Jul 9, 2025
afcd74b
WIP
stumbo Jul 16, 2025
cc2c0ef
Bibliography WIP
stumbo Aug 21, 2025
86ba565
Initial implementation of list of all bibliography entries
stumbo Aug 24, 2025
a2b6188
Initial implementation of list of all bibliography entries
stumbo Aug 24, 2025
f6a2620
Merge branch 'mth5--bibliography-items-individual-pages' into bs1_bib…
stumbo Sep 25, 2025
7ff6032
Updates to bibliography page
stumbo Oct 3, 2025
8dba241
Update bibliography entry to link to Zotero
stumbo Oct 9, 2025
c8b317f
Add missing edits.
stumbo Oct 9, 2025
ca4ac24
Update Zotero link wording and open in new tab
stumbo Oct 9, 2025
aee5b11
Fixed a few Hugo syntax errors.
MattHeffron Oct 9, 2025
c45050d
Updates to author tags
stumbo Oct 15, 2025
c9ccc82
Start of building out individual bibliography pages
stumbo Oct 20, 2025
49411f7
Continued work on creating individual entries.
stumbo Oct 22, 2025
fb57d07
Finish individual bibliography entry creation
stumbo Oct 23, 2025
6e84cf9
Taxonomy initial work. Still WIP
stumbo Oct 25, 2025
6596148
Some edge case cleanups.
MattHeffron Oct 26, 2025
92b7232
Taxonomy support for filtering bibliographical entries
stumbo Oct 26, 2025
86d61c2
Merge remote-tracking branch 'origin/bs1_bibliography' into bs1_bibli…
stumbo Oct 27, 2025
bea77f4
Turn off saving of the 00-rawItems.json and tags.json files.
MattHeffron Oct 27, 2025
bf785e5
Added command line processing to avoid needing to edit the file while…
MattHeffron Oct 29, 2025
76a6d83
Remove storing of individual .json files and unused files.
stumbo Oct 31, 2025
da4a7ef
Cleanup versions in go.sum
stumbo Oct 31, 2025
082ded5
Remove cite placeholder.
stumbo Oct 31, 2025
f9d5475
Fix taxonomy_terms_cloud.html to produce All Authors page
stumbo Nov 1, 2025
499f69c
Merge branch 'main' into bs3_bib_fix_authors_page
stumbo Nov 2, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion layouts/partials/taxonomy_terms_cloud.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{{ $taxo := .taxo -}}
{{ $title := .title -}}

{{ if eq $context.Type "bibliography" }}
{{ if or (eq $context.Type "bibliography") (in (slice "taxonomy" "term") $context.Kind) }}
{{ if isset $context.Site.Taxonomies (lower $taxo) -}}
{{ $taxonomy := index $context.Site.Taxonomies (lower $taxo) -}}
{{ if (gt (len $taxonomy) 0) -}}
Expand Down