Replies: 3 comments 2 replies
-
@geealbers is testing a solution that uses Liquid and the |
Beta Was this translation helpful? Give feedback.
-
I don't know if this is necessarily what you are looking for but since we split our catalogue into 4 volumes plus a supplement we wanted to have a way for people to search the whole catalogue. We made a "series contents" page with the object info (and the accession number as of tomorrow's update). https://nelson-atkins.org/starr1/series-contents/ I did it manually with a markdown table and links. |
Beta Was this translation helpful? Give feedback.
-
One automated approach to index creation is to use a ---
title: Cool Cat. Entry
tags: entries
layout: entry
objects:
- 1a
---
This is a very cool entry! and in a new file, ---
order: 10
layout: page
title: Index
---
<section class='section quire-page__content'>
<div class='container'>
<div class='content'>
<ul>
{% for entry in collections.entries %}
<li><a href='{{ entry.data.canonicalURL }}'>{{ entry.data.title }}</a></li>
{% endfor %}
</ul>
</div>
</div>
</section> This is more or less what we did on Exhibiting O’Keeffe’s collections entity index. Though tbh even as a developer in some situations I'd still go @salger1 's route and create a manual index page. Human editors can do things that would be complex to do automated-ly, preserving non-developers' ability to change the page can be an advantage, etc. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
For a collection catalogue or exhibition catalogue, has anyone created a page with a list of catalogue entries to serve as a sort of index? We would like to make one for our Italian Paintings publication. It could look something like this contents page, except we would want to include the inventory number for each object, along with artist and title.
https://italian-paintings-live.netlify.app/catalogue/
Is this something that could be automated somehow, or do I need to just do this manually, typing up a list of all objects and linking to the correct entry?
Thanks, in advance, for any advice!
Beta Was this translation helpful? Give feedback.
All reactions