diff --git a/gatsby-config.js b/gatsby-config.js index 5188ec1..976f845 100644 --- a/gatsby-config.js +++ b/gatsby-config.js @@ -57,6 +57,7 @@ module.exports = { iiifRoot: 'https://iiif-manifest.library.nd.edu', timePeriodCutoff: 1400, useFixtures: useFixtures, + skipEmptyAleph: false, // updateFixtures: true, // debug: true, // logIds: true, diff --git a/src/templates/marble-item.js b/src/templates/marble-item.js index 2abdf5e..d9df5ed 100644 --- a/src/templates/marble-item.js +++ b/src/templates/marble-item.js @@ -7,7 +7,7 @@ import { graphql } from 'gatsby' import queryString from 'query-string' import Layout from '../components/Layout' import Seo from '@ndlib/gatsby-theme-marble/src/components/Shared/Seo' -import CollectionLayout from '@ndlib/gatsby-theme-marble/src/components/Shared/MarbleItem/CollectionLayout' +import CollectionNewLayout from '@ndlib/gatsby-theme-marble/src/components/Shared/MarbleItem/CollectionNewLayout' import ItemLayout from '@ndlib/gatsby-theme-marble/src/components/Shared/MarbleItem/ItemLayout' import RelatedItemsFromSearch from '@ndlib/gatsby-theme-marble/src/components/Shared/MarbleItem/RelatedItemsFromSearch' import NDBrandSection from '@ndlib/gatsby-theme-marble/src/components/Shared/NDBrand/Section' @@ -48,20 +48,22 @@ const MarbleItemPage = ({ data, location }) => { {marbleItem.display === 'collection' ? ( - ) : ( - + <> + + + ) } - {debug ?
{JSON.stringify(data, null, 2)}
: null