-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #254 from nulib/deploy/staging
Update main.
- Loading branch information
Showing
28 changed files
with
2,175 additions
and
1,511 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,3 +43,6 @@ yarn-error.log* | |
|
||
# ephemeral build artifacts | ||
/lib/honeybadger/config.vars.js | ||
|
||
# vscode | ||
.vscode/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
import { DC_URL } from "./endpoints"; | ||
import { HeroCollection } from "./homepage"; | ||
|
||
/* eslint sort-keys: 0 */ | ||
|
||
export const pageNotFoundCollection: HeroCollection = { | ||
"@context": "http://iiif.io/api/presentation/3/context.json", | ||
id: "https://devbox.library.northwestern.edu:3000/homepage-hero.json", | ||
type: "Collection", | ||
label: { | ||
none: ["Page Not Found"], | ||
}, | ||
items: [ | ||
{ | ||
id: "https://api.dc.library.northwestern.edu/api/v2/works/f880a614-6e75-4cd0-9af6-8b86af34f370?as=iiif", | ||
type: "Collection", | ||
label: { none: ["Page Not Found"] }, | ||
summary: { | ||
none: [ | ||
'Sorry the page you are looking for does not exist. It\'s possible the resource, work, or collection is no longer available. If you think you reached this page in error, please <a href="https://dc.rdc-staging.library.northwestern.edu/contact">contact us</a>.', | ||
], | ||
}, | ||
thumbnail: [ | ||
{ | ||
id: `/full/3000,/0/default.jpg`, | ||
type: "Image", | ||
format: "image/jpeg", | ||
service: [ | ||
{ | ||
id: "https://iiif.dc.library.northwestern.edu/iiif/2/2b1e0758-122f-4f45-b37b-393f2ab0427e", | ||
profile: "http://iiif.io/api/image/2/level2.json", | ||
type: "ImageService2", | ||
}, | ||
], | ||
width: 1650, | ||
height: 1309, | ||
}, | ||
], | ||
homepage: [ | ||
{ | ||
id: `${DC_URL}`, | ||
type: "Text", | ||
}, | ||
], | ||
seeAlso: [ | ||
{ | ||
id: `${DC_URL}`, | ||
type: "Text", | ||
label: { none: ["To Homepage"] }, | ||
}, | ||
{ | ||
id: `${DC_URL}/search`, | ||
type: "Text", | ||
label: { none: ["Search Works"] }, | ||
}, | ||
], | ||
nul_hero_region: "350,200,5000,4000", | ||
}, | ||
], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.