├── .gitignore ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── _config.yml ├── _includes ├── annotation_to_json.html ├── head.html ├── header.html └── iiif_presentation.html ├── _sass ├── _components.scss └── _utilities.scss ├── annotations ├── bnf640 │ ├── f10 │ │ ├── f10.json │ │ └── list.json │ ├── f11 │ │ ├── f11.json │ │ └── list.json │ ├── f12 │ │ ├── f12.json │ │ └── list.json │ ├── f13 │ │ ├── f13.json │ │ └── list.json │ ├── f14 │ │ ├── f14.json │ │ └── list.json │ ├── f15 │ │ ├── f15.json │ │ └── list.json │ ├── f16 │ │ ├── f16.json │ │ └── list.json │ ├── f18 │ │ ├── f18.json │ │ └── list.json │ ├── f19 │ │ ├── f19.json │ │ └── list.json │ ├── f25 │ │ ├── f25.json │ │ └── list.json │ ├── f33 │ │ ├── f33.json │ │ └── list.json │ ├── f37 │ │ ├── f37.json │ │ └── list.json │ ├── f7 │ │ ├── f7.json │ │ └── list.json │ ├── f8 │ │ ├── f8.json │ │ └── list.json │ └── f9 │ │ ├── f9.json │ │ └── list.json └── haemisphaerium │ └── 0001 │ ├── 0001.json │ └── list.json ├── iiif ├── bnf640 │ ├── clean-manifest.json │ └── manifest.json ├── copperfield │ ├── clean-manifest.json │ └── manifest.json └── haemisphaerium │ ├── clean-manifest.json │ └── manifest.json └── index.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/Rakefile -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/annotation_to_json.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/_includes/annotation_to_json.html -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/_includes/head.html -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/_includes/header.html -------------------------------------------------------------------------------- /_includes/iiif_presentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/_includes/iiif_presentation.html -------------------------------------------------------------------------------- /_sass/_components.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/_sass/_components.scss -------------------------------------------------------------------------------- /_sass/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/_sass/_utilities.scss -------------------------------------------------------------------------------- /annotations/bnf640/f10/f10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/annotations/bnf640/f10/f10.json -------------------------------------------------------------------------------- /annotations/bnf640/f10/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/annotations/bnf640/f10/list.json -------------------------------------------------------------------------------- /annotations/bnf640/f11/f11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/annotations/bnf640/f11/f11.json -------------------------------------------------------------------------------- /annotations/bnf640/f11/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/annotations/bnf640/f11/list.json -------------------------------------------------------------------------------- /annotations/bnf640/f12/f12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/annotations/bnf640/f12/f12.json -------------------------------------------------------------------------------- /annotations/bnf640/f12/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/annotations/bnf640/f12/list.json -------------------------------------------------------------------------------- /annotations/bnf640/f13/f13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/annotations/bnf640/f13/f13.json -------------------------------------------------------------------------------- /annotations/bnf640/f13/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/annotations/bnf640/f13/list.json -------------------------------------------------------------------------------- /annotations/bnf640/f14/f14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/annotations/bnf640/f14/f14.json -------------------------------------------------------------------------------- /annotations/bnf640/f14/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/annotations/bnf640/f14/list.json -------------------------------------------------------------------------------- /annotations/bnf640/f15/f15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/annotations/bnf640/f15/f15.json -------------------------------------------------------------------------------- /annotations/bnf640/f15/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/annotations/bnf640/f15/list.json -------------------------------------------------------------------------------- /annotations/bnf640/f16/f16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/annotations/bnf640/f16/f16.json -------------------------------------------------------------------------------- /annotations/bnf640/f16/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/annotations/bnf640/f16/list.json -------------------------------------------------------------------------------- /annotations/bnf640/f18/f18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/annotations/bnf640/f18/f18.json -------------------------------------------------------------------------------- /annotations/bnf640/f18/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/annotations/bnf640/f18/list.json -------------------------------------------------------------------------------- /annotations/bnf640/f19/f19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/annotations/bnf640/f19/f19.json -------------------------------------------------------------------------------- /annotations/bnf640/f19/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/annotations/bnf640/f19/list.json -------------------------------------------------------------------------------- /annotations/bnf640/f25/f25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/annotations/bnf640/f25/f25.json -------------------------------------------------------------------------------- /annotations/bnf640/f25/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/annotations/bnf640/f25/list.json -------------------------------------------------------------------------------- /annotations/bnf640/f33/f33.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/annotations/bnf640/f33/f33.json -------------------------------------------------------------------------------- /annotations/bnf640/f33/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/annotations/bnf640/f33/list.json -------------------------------------------------------------------------------- /annotations/bnf640/f37/f37.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/annotations/bnf640/f37/f37.json -------------------------------------------------------------------------------- /annotations/bnf640/f37/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/annotations/bnf640/f37/list.json -------------------------------------------------------------------------------- /annotations/bnf640/f7/f7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/annotations/bnf640/f7/f7.json -------------------------------------------------------------------------------- /annotations/bnf640/f7/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/annotations/bnf640/f7/list.json -------------------------------------------------------------------------------- /annotations/bnf640/f8/f8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/annotations/bnf640/f8/f8.json -------------------------------------------------------------------------------- /annotations/bnf640/f8/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/annotations/bnf640/f8/list.json -------------------------------------------------------------------------------- /annotations/bnf640/f9/f9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/annotations/bnf640/f9/f9.json -------------------------------------------------------------------------------- /annotations/bnf640/f9/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/annotations/bnf640/f9/list.json -------------------------------------------------------------------------------- /annotations/haemisphaerium/0001/0001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/annotations/haemisphaerium/0001/0001.json -------------------------------------------------------------------------------- /annotations/haemisphaerium/0001/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/annotations/haemisphaerium/0001/list.json -------------------------------------------------------------------------------- /iiif/bnf640/clean-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/iiif/bnf640/clean-manifest.json -------------------------------------------------------------------------------- /iiif/bnf640/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/iiif/bnf640/manifest.json -------------------------------------------------------------------------------- /iiif/copperfield/clean-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/iiif/copperfield/clean-manifest.json -------------------------------------------------------------------------------- /iiif/copperfield/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/iiif/copperfield/manifest.json -------------------------------------------------------------------------------- /iiif/haemisphaerium/clean-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/iiif/haemisphaerium/clean-manifest.json -------------------------------------------------------------------------------- /iiif/haemisphaerium/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/iiif/haemisphaerium/manifest.json -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnyrop/annotate/HEAD/index.md --------------------------------------------------------------------------------