From ac7726f5ca99860010d968f510482b1018fbdc53 Mon Sep 17 00:00:00 2001 From: Ron Snyder Date: Sat, 3 Jul 2021 16:20:05 -0400 Subject: [PATCH 001/398] Create CNAME --- CNAME | 1 + 1 file changed, 1 insertion(+) create mode 100644 CNAME diff --git a/CNAME b/CNAME new file mode 100644 index 00000000..48ef1426 --- /dev/null +++ b/CNAME @@ -0,0 +1 @@ +dofe.kent-maps.online \ No newline at end of file From 5d82c52a78511ca663561c35e8759bad1c0a1a6f Mon Sep 17 00:00:00 2001 From: Ron Snyder Date: Sat, 3 Jul 2021 20:44:55 -0400 Subject: [PATCH 002/398] Create config.yaml --- config.yaml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 config.yaml diff --git a/config.yaml b/config.yaml new file mode 100644 index 00000000..de8c386d --- /dev/null +++ b/config.yaml @@ -0,0 +1,33 @@ +title: Kent Maps DofE +tagline: Duke of Edinburgh award site +banner: https://picsum.photos/id/403/1000/400?blur=1 +favicon: /images/favicon.svg + +# When using a custom domain these fields must be updated to match +# the account, repository name and branch (ref) +acct: kent-map +repo: dofe +ref: main + +###################################################### +# Defines options shown in the header navigation menu +###################################################### +nav: +- label: About + icon: fas fa-info + action: load-page + path: /about +- label: Contact Us + icon: fas fa-envelope + action: contact-us + +# If the /contact-us path is defined for the nav menu a contact form will be enabled +# The following information is used in the display and processing of the contact form. +contactForm: + to: + - Kent DofE Contact + subject: Kent DofE Contact + +siteAdmins: +- rsnyder +- DigiHum1 From dea83b3c367c8f6e005f8ce73e4238a9803fc83b Mon Sep 17 00:00:00 2001 From: Ron Snyder Date: Sat, 3 Jul 2021 20:45:52 -0400 Subject: [PATCH 003/398] Create index.md --- index.md | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 index.md diff --git a/index.md b/index.md new file mode 100644 index 00000000..a88bba96 --- /dev/null +++ b/index.md @@ -0,0 +1,54 @@ + + + + +# Kent Maps Online - Duke of Edinburgh award site + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. + +Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. + +# + + +## St Augustine's Abbey + +![](https://upload.wikimedia.org/wikipedia/commons/thumb/6/60/Augustine_Abbey.jpg/320px-Augustine_Abbey.jpg) + + coords: 51.278128, 1.088206 + eid: Q334303 + +St Augustine's Abbey was a Benedictine monastery in Canterbury, Kent, England. The abbey was founded in 598 and functioned as a monastery until its dissolution in 1538 during the English Reformation. After the abbey's dissolution, it underwent dismantlement until 1848. Since 1848, part of the site has been used for educational purposes and the abbey ruins have been preserved for their historical value. + +## Canterbury + +![](https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Westgate_Gardens_5.JPG/320px-Westgate_Gardens_5.JPG) + + coords: 51.278333, 1.0775 + eid: Q29303 + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. + +## Chartham + + coords: 51.255, 1.0205 + +![](https://upload.wikimedia.org/wikipedia/commons/5/57/Village_Church%2C_Chartham_-_geograph.org.uk_-_663007.jpg) + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. + +## Ramsgate + +![](https://upload.wikimedia.org/wikipedia/commons/thumb/0/05/Ramsgate_Harbour_2.jpg/320px-Ramsgate_Harbour_2.jpg) + + coords: 51.343911, 1.404031 + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. + +## Folkestone + +![](https://upload.wikimedia.org/wikipedia/commons/0/0e/Fstone.jpg) + + coords: 51.081389, 1.164722 + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. % From 76be8a70ec07f94134f649d82648801817599e59 Mon Sep 17 00:00:00 2001 From: Ron Snyder Date: Sat, 3 Jul 2021 20:50:02 -0400 Subject: [PATCH 004/398] Added custom components and pages --- custom/components/Cards.vue | 212 ++++++++++++++++++++++++++ custom/components/Header.vue | 250 +++++++++++++++++++++++++++++++ custom/components/Home.vue | 202 +++++++++++++++++++++++++ custom/components/Map.vue | 68 +++++++++ custom/components/NowAndThen.vue | 118 +++++++++++++++ pages/canterbury.md | 12 ++ pages/st-augustines-abbey.md | 10 ++ 7 files changed, 872 insertions(+) create mode 100644 custom/components/Cards.vue create mode 100644 custom/components/Header.vue create mode 100644 custom/components/Home.vue create mode 100644 custom/components/Map.vue create mode 100644 custom/components/NowAndThen.vue create mode 100644 pages/canterbury.md create mode 100644 pages/st-augustines-abbey.md diff --git a/custom/components/Cards.vue b/custom/components/Cards.vue new file mode 100644 index 00000000..0208c2e5 --- /dev/null +++ b/custom/components/Cards.vue @@ -0,0 +1,212 @@ + + + + + \ No newline at end of file diff --git a/custom/components/Header.vue b/custom/components/Header.vue new file mode 100644 index 00000000..0c165bc6 --- /dev/null +++ b/custom/components/Header.vue @@ -0,0 +1,250 @@ + + + + + \ No newline at end of file diff --git a/custom/components/Home.vue b/custom/components/Home.vue new file mode 100644 index 00000000..8063cb10 --- /dev/null +++ b/custom/components/Home.vue @@ -0,0 +1,202 @@ + + + + + \ No newline at end of file diff --git a/custom/components/Map.vue b/custom/components/Map.vue new file mode 100644 index 00000000..e1862576 --- /dev/null +++ b/custom/components/Map.vue @@ -0,0 +1,68 @@ + + + + + \ No newline at end of file diff --git a/custom/components/NowAndThen.vue b/custom/components/NowAndThen.vue new file mode 100644 index 00000000..f457fe12 --- /dev/null +++ b/custom/components/NowAndThen.vue @@ -0,0 +1,118 @@ + + + + + \ No newline at end of file diff --git a/pages/canterbury.md b/pages/canterbury.md new file mode 100644 index 00000000..1078e5b7 --- /dev/null +++ b/pages/canterbury.md @@ -0,0 +1,12 @@ + + + + + + + +# Canterbury + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. + +Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. diff --git a/pages/st-augustines-abbey.md b/pages/st-augustines-abbey.md new file mode 100644 index 00000000..84148067 --- /dev/null +++ b/pages/st-augustines-abbey.md @@ -0,0 +1,10 @@ + + + + + + + +# St Augustine's Abbey + +St Augustine's Abbey was a Benedictine monastery in Canterbury, Kent, England. The abbey was founded in 598 and functioned as a monastery until its dissolution in 1538 during the English Reformation. After the abbey's dissolution, it underwent dismantlement until 1848. Since 1848, part of the site has been used for educational purposes and the abbey ruins have been preserved for their historical value. \ No newline at end of file From 8e247435d0a688486c7087b1d4ec9226b9f25788 Mon Sep 17 00:00:00 2001 From: rsnyder Date: Tue, 6 Jul 2021 00:23:15 +0000 Subject: [PATCH 005/398] testing --- custom/components/Map.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/custom/components/Map.vue b/custom/components/Map.vue index e1862576..ef2501f2 100644 --- a/custom/components/Map.vue +++ b/custom/components/Map.vue @@ -4,6 +4,7 @@ \ No newline at end of file From 822b23d85fc8bc5a2e1fb48070d16ba27128bbc2 Mon Sep 17 00:00:00 2001 From: Logan Miller Date: Wed, 14 Jul 2021 17:45:45 +0100 Subject: [PATCH 011/398] Descriptions to curtain/sync, renamed header items --- custom/components/Cards.vue | 12 ++++++++++++ custom/components/Home.vue | 2 +- custom/components/NowAndThen.vue | 12 ++++++++++-- 3 files changed, 23 insertions(+), 3 deletions(-) diff --git a/custom/components/Cards.vue b/custom/components/Cards.vue index 9127238c..d98fc8a1 100644 --- a/custom/components/Cards.vue +++ b/custom/components/Cards.vue @@ -16,6 +16,7 @@ + @@ -45,6 +46,17 @@ module.exports = { cardSelected(slug) { console.log(`cardSelected: slug=${slug}`) this.$emit('do-action', {action: 'load-page', path: `/pages/${slug}`}) + }, + + printLocations() { + console.log(this.locations.toSource()) + for (let card in this.locations) { + console.log(card.heading) + } + /*for (let obj in this.locations) { + (card, cidx) = obj + console.log(card.heading) + }*/ } }, watch: {} diff --git a/custom/components/Home.vue b/custom/components/Home.vue index b29f4b32..5d33f7f0 100644 --- a/custom/components/Home.vue +++ b/custom/components/Home.vue @@ -12,7 +12,7 @@
diff --git a/custom/components/NowAndThen.vue b/custom/components/NowAndThen.vue index 8e20acd7..b344b289 100644 --- a/custom/components/NowAndThen.vue +++ b/custom/components/NowAndThen.vue @@ -4,6 +4,7 @@

Mode

+

{{ mode_description }}

@@ -25,7 +26,8 @@ module.exports = { }, data: () => ({ viewer: null, - mode: 'curtain' + mode: 'curtain', + mode_description: 'Pinch in to zoom. Move your cursor from left to right to view now VS then.' }), computed: { compareItems() { return this.params.filter(param => param.viewer === 've-compare') }, @@ -39,11 +41,13 @@ module.exports = { initSync() { this.mode = 'sync' + this.mode_description = 'Pinch in to zoom. Hold left-click and move your cursor to view differnt parts of the image.' this.loadImages().then(images => this.initViewer(images)) }, initCurtain() { this.mode = 'curtain' + this.mode_description = 'Pinch in to zoom. Move your cursor from left to right to view now VS then.' this.loadImages().then(images => this.initViewer(images)) }, @@ -141,7 +145,7 @@ module.exports = { color: white; background-color: #555; border: 2px solid #555; - margin-bottom: 3vh; + } .toggle-mode:hover { @@ -156,4 +160,8 @@ module.exports = { background-color: #04AA6D; } +.mode-description { + font-style: italic; +} + \ No newline at end of file From 093e90a5f4569213113fe8c743be1f03ab405c29 Mon Sep 17 00:00:00 2001 From: Logan Miller Date: Fri, 16 Jul 2021 15:52:08 +0100 Subject: [PATCH 012/398] Added an about page --- custom/components/About.vue | 53 +++++++++++++++++++++++++++++++++++++ custom/components/Cards.vue | 21 ++++++++------- custom/components/Home.vue | 2 ++ 3 files changed, 66 insertions(+), 10 deletions(-) create mode 100644 custom/components/About.vue diff --git a/custom/components/About.vue b/custom/components/About.vue new file mode 100644 index 00000000..4033c0cc --- /dev/null +++ b/custom/components/About.vue @@ -0,0 +1,53 @@ + + + + + \ No newline at end of file diff --git a/custom/components/Cards.vue b/custom/components/Cards.vue index d98fc8a1..c46d61a2 100644 --- a/custom/components/Cards.vue +++ b/custom/components/Cards.vue @@ -1,5 +1,5 @@ @@ -47,16 +47,17 @@ module.exports = { console.log(`cardSelected: slug=${slug}`) this.$emit('do-action', {action: 'load-page', path: `/pages/${slug}`}) }, - printLocations() { - console.log(this.locations.toSource()) - for (let card in this.locations) { - console.log(card.heading) + var cards_container = document.getElementById('cards_container') + var cards = cards_container.getElementsByTagName('div') + var cardsArray = []; + var heading = "hi" + for (var i = 0; i < cards.length; i += 1) { + heading = cards[i].getElementsByTagName('h2')[0]; + console.log(heading.innerHTML) + //cardsArray.push(heading.innerHTML) } - /*for (let obj in this.locations) { - (card, cidx) = obj - console.log(card.heading) - }*/ + //console.log(cardsArray) } }, watch: {} diff --git a/custom/components/Home.vue b/custom/components/Home.vue index 5d33f7f0..d58f11c5 100644 --- a/custom/components/Home.vue +++ b/custom/components/Home.vue @@ -13,12 +13,14 @@
+
From 4884bb5c2ddf2d364f86f288ef5825943e5ec96d Mon Sep 17 00:00:00 2001 From: Logan Miller Date: Fri, 16 Jul 2021 17:37:07 +0100 Subject: [PATCH 013/398] Cards automatically sort --- custom/components/Cards.vue | 51 ++++++++++--------------------------- 1 file changed, 14 insertions(+), 37 deletions(-) diff --git a/custom/components/Cards.vue b/custom/components/Cards.vue index c46d61a2..6edf1ea1 100644 --- a/custom/components/Cards.vue +++ b/custom/components/Cards.vue @@ -1,5 +1,5 @@ @@ -41,24 +40,25 @@ module.exports = { } }) ps.forEach(p => observer.observe(p)) + + // Sort cards alphabetically + var cards_container = document.getElementById('cards_container') + var cards = cards_container.getElementsByClassName('card'); + + [].slice.call(cards).sort(function(a, b) { + var a_heading = a.getElementsByTagName('h2')[0].innerHTML + var b_heading = b.getElementsByTagName('h2')[0].innerHTML + return a_heading.localeCompare(b_heading) + }).forEach(function(val, index) { + cards_container.appendChild(val) + }) + }, methods: { cardSelected(slug) { console.log(`cardSelected: slug=${slug}`) this.$emit('do-action', {action: 'load-page', path: `/pages/${slug}`}) }, - printLocations() { - var cards_container = document.getElementById('cards_container') - var cards = cards_container.getElementsByTagName('div') - var cardsArray = []; - var heading = "hi" - for (var i = 0; i < cards.length; i += 1) { - heading = cards[i].getElementsByTagName('h2')[0]; - console.log(heading.innerHTML) - //cardsArray.push(heading.innerHTML) - } - //console.log(cardsArray) - } }, watch: {} } @@ -97,29 +97,6 @@ module.exports = { } } -/* -.cards { - display: grid; - grid-auto-flow: row; - gap: 1em; - padding: 1em; - height: 100%; -} - -@media (min-width: 48em) { - .cards { - grid-auto-flow: column !important; - grid-auto-columns: 1fr; - } -} - -.card { - padding: 12px; - display: flex; - flex-direction: column; -} -*/ - .card:hover { cursor: pointer; border: 1px solid #ddd; From b0ba1c1b954fbdaa9f7f55e7ed292dcce1115630 Mon Sep 17 00:00:00 2001 From: Logan Miller Date: Sat, 17 Jul 2021 12:57:20 +0100 Subject: [PATCH 014/398] Renamed about page to artcicles page, added A-Z card navigation --- custom/components/{About.vue => Articles.vue} | 0 custom/components/Cards.vue | 64 +++++++++++++++---- custom/components/Home.vue | 4 +- 3 files changed, 52 insertions(+), 16 deletions(-) rename custom/components/{About.vue => Articles.vue} (100%) diff --git a/custom/components/About.vue b/custom/components/Articles.vue similarity index 100% rename from custom/components/About.vue rename to custom/components/Articles.vue diff --git a/custom/components/Cards.vue b/custom/components/Cards.vue index 6edf1ea1..82f4356f 100644 --- a/custom/components/Cards.vue +++ b/custom/components/Cards.vue @@ -1,19 +1,49 @@ @@ -149,6 +150,14 @@ module.exports = { \ No newline at end of file + From f52c089e75d1c3faa2e9aa9a349f12b2ae28cb72 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 20:22:12 +0100 Subject: [PATCH 230/398] Update Home.vue --- custom/components/Home.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/custom/components/Home.vue b/custom/components/Home.vue index b1482e57..98d2db6f 100644 --- a/custom/components/Home.vue +++ b/custom/components/Home.vue @@ -15,6 +15,7 @@
  • Map
  • Places
  • Articles
  • +
  • Reviews
  • From 775f6959e1886277c714dbc25b4c40388d81ece2 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 20:23:38 +0100 Subject: [PATCH 231/398] Update Home.vue --- custom/components/Home.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom/components/Home.vue b/custom/components/Home.vue index 98d2db6f..1a3fa972 100644 --- a/custom/components/Home.vue +++ b/custom/components/Home.vue @@ -15,7 +15,7 @@
  • Map
  • Places
  • Articles
  • -
  • Reviews
  • +
  • Reviews
  • From 199816a71191d6270ef038f7838b193eb65fa209 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 20:24:19 +0100 Subject: [PATCH 232/398] Update Home.vue --- custom/components/Home.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom/components/Home.vue b/custom/components/Home.vue index 1a3fa972..682e859e 100644 --- a/custom/components/Home.vue +++ b/custom/components/Home.vue @@ -15,7 +15,7 @@
  • Map
  • Places
  • Articles
  • -
  • Reviews
  • +
  • Reviews
  • From 243cc38d0f166ad3562707f9759fd6aed0eae7bd Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 20:25:46 +0100 Subject: [PATCH 233/398] Update Home.vue --- custom/components/Home.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom/components/Home.vue b/custom/components/Home.vue index 682e859e..144cefc5 100644 --- a/custom/components/Home.vue +++ b/custom/components/Home.vue @@ -15,7 +15,7 @@
  • Map
  • Places
  • Articles
  • -
  • Reviews
  • +
  • Reviews
  • From 94e3905dd708dcf48a54ec5de5f992d3281612fc Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 20:27:44 +0100 Subject: [PATCH 234/398] Update Home.vue --- custom/components/Home.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom/components/Home.vue b/custom/components/Home.vue index 144cefc5..682e859e 100644 --- a/custom/components/Home.vue +++ b/custom/components/Home.vue @@ -15,7 +15,7 @@
  • Map
  • Places
  • Articles
  • -
  • Reviews
  • +
  • Reviews
  • From d171ceacc6bae096ed8b41f93b7837817757284d Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 20:30:44 +0100 Subject: [PATCH 235/398] Update Home.vue --- custom/components/Home.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom/components/Home.vue b/custom/components/Home.vue index 682e859e..555524d0 100644 --- a/custom/components/Home.vue +++ b/custom/components/Home.vue @@ -14,7 +14,7 @@ From 8e13fdc1f41b8bc2c475594a4b89a2b6e4f00a96 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 20:34:43 +0100 Subject: [PATCH 236/398] Update Home.vue --- custom/components/Home.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/custom/components/Home.vue b/custom/components/Home.vue index 555524d0..985d6fe0 100644 --- a/custom/components/Home.vue +++ b/custom/components/Home.vue @@ -14,8 +14,8 @@ From 918568014e3060127f6466155f02ba504cb97590 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 20:35:53 +0100 Subject: [PATCH 237/398] Update Home.vue --- custom/components/Home.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/custom/components/Home.vue b/custom/components/Home.vue index 985d6fe0..2cdd0bf8 100644 --- a/custom/components/Home.vue +++ b/custom/components/Home.vue @@ -14,8 +14,8 @@ From 4941e4f9a02e38a720f7635a3cf6d936aa112537 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 20:37:03 +0100 Subject: [PATCH 238/398] Update Home.vue --- custom/components/Home.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom/components/Home.vue b/custom/components/Home.vue index 2cdd0bf8..56861829 100644 --- a/custom/components/Home.vue +++ b/custom/components/Home.vue @@ -14,7 +14,7 @@ From 0c1830d05449a2fc13a164e6719a0826ab9f3676 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 20:38:24 +0100 Subject: [PATCH 239/398] Update Home.vue --- custom/components/Home.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom/components/Home.vue b/custom/components/Home.vue index 56861829..552ab6e9 100644 --- a/custom/components/Home.vue +++ b/custom/components/Home.vue @@ -15,7 +15,7 @@
  • Map
  • Places
  • Articles
  • -
  • "> Reviews
  • +
  • Reviews
  • From c39eb02049dd0645d6c25f4781d3655c9fd8d452 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 20:45:29 +0100 Subject: [PATCH 240/398] Create Review.vue --- custom/components/Review.vue | 1 + 1 file changed, 1 insertion(+) create mode 100644 custom/components/Review.vue diff --git a/custom/components/Review.vue b/custom/components/Review.vue new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/custom/components/Review.vue @@ -0,0 +1 @@ + From 019f4b774b4a13fafe65db3f607d67bd13e2dcc1 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 20:45:47 +0100 Subject: [PATCH 241/398] Rename Review.vue to Reviews.vue --- custom/components/{Review.vue => Reviews.vue} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename custom/components/{Review.vue => Reviews.vue} (100%) diff --git a/custom/components/Review.vue b/custom/components/Reviews.vue similarity index 100% rename from custom/components/Review.vue rename to custom/components/Reviews.vue From 804bf9a797dbf173661230f8e9dd2de6003cce95 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 20:47:45 +0100 Subject: [PATCH 242/398] Update Reviews.vue --- custom/components/Reviews.vue | 242 ++++++++++++++++++++++++++++++++++ 1 file changed, 242 insertions(+) diff --git a/custom/components/Reviews.vue b/custom/components/Reviews.vue index 8b137891..5b6d0a7c 100644 --- a/custom/components/Reviews.vue +++ b/custom/components/Reviews.vue @@ -1 +1,243 @@ + + + + From 4cc73e914ce48479c2f33491614fd3146eae51e4 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 20:55:00 +0100 Subject: [PATCH 243/398] Update Reviews.vue --- custom/components/Reviews.vue | 206 ++++++---------------------------- 1 file changed, 33 insertions(+), 173 deletions(-) diff --git a/custom/components/Reviews.vue b/custom/components/Reviews.vue index 5b6d0a7c..01f1ded8 100644 --- a/custom/components/Reviews.vue +++ b/custom/components/Reviews.vue @@ -28,35 +28,45 @@ y | z

    -
    -
    -
    -

    -
    - -
    -

    +

    +

    +
    +
    +

    -
    + From 0be10e8698b348170c536a225207f927e4e99b74 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 20:59:45 +0100 Subject: [PATCH 244/398] Update Reviews.vue --- custom/components/Reviews.vue | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/custom/components/Reviews.vue b/custom/components/Reviews.vue index 01f1ded8..53092927 100644 --- a/custom/components/Reviews.vue +++ b/custom/components/Reviews.vue @@ -29,11 +29,11 @@ z

    -
    -

    -
    +
    +

    +
    -

    @@ -47,18 +47,19 @@ From 4557a6b3c6124ece9111a6d8ad6e4093d53e39b1 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 21:00:42 +0100 Subject: [PATCH 245/398] Update Reviews.vue --- custom/components/Reviews.vue | 108 ---------------------------------- 1 file changed, 108 deletions(-) diff --git a/custom/components/Reviews.vue b/custom/components/Reviews.vue index 53092927..8b137891 100644 --- a/custom/components/Reviews.vue +++ b/custom/components/Reviews.vue @@ -1,109 +1 @@ - - - - - From a2ed8915989a7872716c86d87d7d47ff2b55e34b Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 21:12:04 +0100 Subject: [PATCH 246/398] Update Reviews.vue --- custom/components/Reviews.vue | 102 ++++++++++++++++++++++++++++++++++ 1 file changed, 102 insertions(+) diff --git a/custom/components/Reviews.vue b/custom/components/Reviews.vue index 8b137891..ab2b5910 100644 --- a/custom/components/Reviews.vue +++ b/custom/components/Reviews.vue @@ -1 +1,103 @@ + + + + + From 8518146026c30f0a2c727642343dacd834d2b9b1 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 21:16:13 +0100 Subject: [PATCH 247/398] Update Reviews.vue --- custom/components/Reviews.vue | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/custom/components/Reviews.vue b/custom/components/Reviews.vue index ab2b5910..d9d1e7e5 100644 --- a/custom/components/Reviews.vue +++ b/custom/components/Reviews.vue @@ -29,11 +29,11 @@ z

    -
    -

    -
    +
    +

    +
    -

    @@ -47,12 +47,12 @@ From 2b1ed1abcd858a4308413e671a690c3e07ca8070 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 21:24:50 +0100 Subject: [PATCH 249/398] Update Reviews.vue --- custom/components/Reviews.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom/components/Reviews.vue b/custom/components/Reviews.vue index 8a38411e..1265dc1b 100644 --- a/custom/components/Reviews.vue +++ b/custom/components/Reviews.vue @@ -87,7 +87,7 @@ module.exports = { methods: { cardSelected(slug) { console.log(`cardSelected: slug=${slug}`) - this.$emit('do-action', {action: 'load-page', path: `/pages/${slug}`}) + this.$emit('do-action', {action: 'load-page', path: `/reviews/${slug}`}) }, }, watch: {} From 0236fc10a6a4cda13da022ae3d5905fac72c014a Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 21:29:22 +0100 Subject: [PATCH 250/398] Update drsyn.md --- reviews/drsyn.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/reviews/drsyn.md b/reviews/drsyn.md index de9bc6fc..ab8f0fdd 100644 --- a/reviews/drsyn.md +++ b/reviews/drsyn.md @@ -1 +1,10 @@ -Dr Syn + + + + + + + +# Dr Syn + +The ancient lavatory at Canterbury Cathedral where the monks washed before and after eating. Photographed by Conor Murphy in 2021. From 21fc4b5ad6d4cb64e21c25ed6f0b0e38e51f8786 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 21:33:41 +0100 Subject: [PATCH 251/398] Create index.md --- reviews/index.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 reviews/index.md diff --git a/reviews/index.md b/reviews/index.md new file mode 100644 index 00000000..657bf181 --- /dev/null +++ b/reviews/index.md @@ -0,0 +1,20 @@ + + + + +# Recommended reading + +Here are some of our recommended titles about Kent or by Kent authors. + +# + + +## Dr Syn + +![](https://upload.wikimedia.org/wikipedia/commons/1/13/Canterbury_Cathedral_cloister2.JPG) + + coords: 51.279811, 1.083001 + eid: Q29265 + +It's a "Syn" + From 49feea730edcc007c6376b915ebbf5bc091e0f15 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 21:37:23 +0100 Subject: [PATCH 252/398] Update index.md --- reviews/index.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/reviews/index.md b/reviews/index.md index 657bf181..2b2cae1a 100644 --- a/reviews/index.md +++ b/reviews/index.md @@ -18,3 +18,37 @@ Here are some of our recommended titles about Kent or by Kent authors. It's a "Syn" +### 21C reading recommendations + +Patience Agbabi. _Telling Tales_ (2014). +Nicola Barker. _Darkmans_ (2011). +Tim Binding. _The Champion_ (2011). +--. _In the Kingdom of Air_ (2002). +David Cramer Smith. _Medway- (2019). +Laurie Duggan. _The Crab and Winkle Way_ (2009). +Setareh Ebrahimi. [_Galloping Horses_](https://www.wordsmithery.info/setarehebrahimi) (2020). +Barry Fentiman-Hall. [_England, My Dandelion Heart_](https://www.wordsmithery.info/bfh-books) (2016). +--. [_Sketches by Baz_](https://www.wordsmithery.info/bfh-books), (2020). +Maggie Gee. _Blood_ (2019). +Abdulrazak Gurnah. _By the Sea_ (2001). +Maggie Harris. _Canterbury Tales on a Cockrow Morning_ (2012). +--. _In Margate by Lunchtime_ (2015). +S. M. Jenkin. [_Fire in the Head_]( https://www.wordsmithery.info/fire-in-the-head) (2015). +Rosemary McLeish. _Defragmentation_ (2020). +--. _I am a Field_ (2019). +Edward Marston. _A Christmas Railway Mystery_ (2017). +Carolyn Oulton. [_Accidental Fruit_](https://www.worplepress.com/accidental-fruit/?fbclid=IwAR0iMTicaIsO_Ae8HdZ08m0KgQSvmjydKumvlC5uE1KUtVJb6sX7WMbuZag) (2016). +Sonia Overall. _The Realm of Shells_ (2006). +Matthew Pearl, _The Last Dickens_ (2009). +Prescott, Victoria. _Inheritance of Secrets_ +Janet Pywell. _Book of Hours_ (a Mikky dos Santos Thriller) (2017). +Danny Rhodes. _Asboville_ (2006). +David Seabrook. _All the Devils Are Here_ (2002). +Fiona Sinclair. _Ladies Who Lunch_(https://sites.google.com/a/lapwingpublications.com/lapwing-store/fiona-sinclair) (2014). +[_A Talent for Hats_](https://www.dempseyandwindle.com/fionasinclair.html) (2017). +[_The Time Travellers’ Picnic_](https://www.dempseyandwindle.com/fionasinclair.html) (2019). +Jonathan Terranova [_ Longing for more_]( https://www.wordsmithery.info/longing-for-more) (2015). +Scarlett Thomas. _The End of Mr Y_ (2006). +Julie Wassmer. _Whitstable Pearl_ 7 book series (2015-2020). + + From b3b05520b3c8511f6616a64cae208c1d750a56aa Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 21:38:44 +0100 Subject: [PATCH 253/398] Update index.md --- reviews/index.md | 34 ---------------------------------- 1 file changed, 34 deletions(-) diff --git a/reviews/index.md b/reviews/index.md index 2b2cae1a..657bf181 100644 --- a/reviews/index.md +++ b/reviews/index.md @@ -18,37 +18,3 @@ Here are some of our recommended titles about Kent or by Kent authors. It's a "Syn" -### 21C reading recommendations - -Patience Agbabi. _Telling Tales_ (2014). -Nicola Barker. _Darkmans_ (2011). -Tim Binding. _The Champion_ (2011). ---. _In the Kingdom of Air_ (2002). -David Cramer Smith. _Medway- (2019). -Laurie Duggan. _The Crab and Winkle Way_ (2009). -Setareh Ebrahimi. [_Galloping Horses_](https://www.wordsmithery.info/setarehebrahimi) (2020). -Barry Fentiman-Hall. [_England, My Dandelion Heart_](https://www.wordsmithery.info/bfh-books) (2016). ---. [_Sketches by Baz_](https://www.wordsmithery.info/bfh-books), (2020). -Maggie Gee. _Blood_ (2019). -Abdulrazak Gurnah. _By the Sea_ (2001). -Maggie Harris. _Canterbury Tales on a Cockrow Morning_ (2012). ---. _In Margate by Lunchtime_ (2015). -S. M. Jenkin. [_Fire in the Head_]( https://www.wordsmithery.info/fire-in-the-head) (2015). -Rosemary McLeish. _Defragmentation_ (2020). ---. _I am a Field_ (2019). -Edward Marston. _A Christmas Railway Mystery_ (2017). -Carolyn Oulton. [_Accidental Fruit_](https://www.worplepress.com/accidental-fruit/?fbclid=IwAR0iMTicaIsO_Ae8HdZ08m0KgQSvmjydKumvlC5uE1KUtVJb6sX7WMbuZag) (2016). -Sonia Overall. _The Realm of Shells_ (2006). -Matthew Pearl, _The Last Dickens_ (2009). -Prescott, Victoria. _Inheritance of Secrets_ -Janet Pywell. _Book of Hours_ (a Mikky dos Santos Thriller) (2017). -Danny Rhodes. _Asboville_ (2006). -David Seabrook. _All the Devils Are Here_ (2002). -Fiona Sinclair. _Ladies Who Lunch_(https://sites.google.com/a/lapwingpublications.com/lapwing-store/fiona-sinclair) (2014). -[_A Talent for Hats_](https://www.dempseyandwindle.com/fionasinclair.html) (2017). -[_The Time Travellers’ Picnic_](https://www.dempseyandwindle.com/fionasinclair.html) (2019). -Jonathan Terranova [_ Longing for more_]( https://www.wordsmithery.info/longing-for-more) (2015). -Scarlett Thomas. _The End of Mr Y_ (2006). -Julie Wassmer. _Whitstable Pearl_ 7 book series (2015-2020). - - From 1809b2ca8f9875c3c0046dcb476df67f6fa8d8d3 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 21:42:38 +0100 Subject: [PATCH 254/398] Update index.md --- reviews/index.md | 62 +++++++++++++++++++++++++++++++++++------------- 1 file changed, 45 insertions(+), 17 deletions(-) diff --git a/reviews/index.md b/reviews/index.md index 657bf181..35e43810 100644 --- a/reviews/index.md +++ b/reviews/index.md @@ -1,20 +1,48 @@ - + + + + + + +### 21C reading recommendations + +Patience Agbabi. _Telling Tales_ (2014). +Nicola Barker. _Darkmans_ (2011). +Tim Binding. _The Champion_ (2011). +--. _In the Kingdom of Air_ (2002). +David Cramer Smith. _Medway- (2019). +Laurie Duggan. _The Crab and Winkle Way_ (2009). +Setareh Ebrahimi. [_Galloping Horses_](https://www.wordsmithery.info/setarehebrahimi) (2020). +Barry Fentiman-Hall. [_England, My Dandelion Heart_](https://www.wordsmithery.info/bfh-books) (2016). +--. [_Sketches by Baz_](https://www.wordsmithery.info/bfh-books), (2020). +Maggie Gee. _Blood_ (2019). +Abdulrazak Gurnah. _By the Sea_ (2001). +Maggie Harris. _Canterbury Tales on a Cockrow Morning_ (2012). +--. _In Margate by Lunchtime_ (2015). +S. M. Jenkin. [_Fire in the Head_]( https://www.wordsmithery.info/fire-in-the-head) (2015). +Rosemary McLeish. _Defragmentation_ (2020). +--. _I am a Field_ (2019). +Edward Marston. _A Christmas Railway Mystery_ (2017). +Carolyn Oulton. [_Accidental Fruit_](https://www.worplepress.com/accidental-fruit/?fbclid=IwAR0iMTicaIsO_Ae8HdZ08m0KgQSvmjydKumvlC5uE1KUtVJb6sX7WMbuZag) (2016). +Sonia Overall. _The Realm of Shells_ (2006). +Matthew Pearl, _The Last Dickens_ (2009). +Prescott, Victoria. _Inheritance of Secrets_ +Janet Pywell. _Book of Hours_ (a Mikky dos Santos Thriller) (2017). +Danny Rhodes. _Asboville_ (2006). +David Seabrook. _All the Devils Are Here_ (2002). +Fiona Sinclair. _Ladies Who Lunch_(https://sites.google.com/a/lapwingpublications.com/lapwing-store/fiona-sinclair) (2014). +[_A Talent for Hats_](https://www.dempseyandwindle.com/fionasinclair.html) (2017). +[_The Time Travellers’ Picnic_](https://www.dempseyandwindle.com/fionasinclair.html) (2019). +Jonathan Terranova [_ Longing for more_]( https://www.wordsmithery.info/longing-for-more) (2015). +Scarlett Thomas. _The End of Mr Y_ (2006). + +Julie Wassmer. _Whitstable Pearl_ 7 book series (2015-2020). - -# Recommended reading - -Here are some of our recommended titles about Kent or by Kent authors. - -# - - -## Dr Syn - -![](https://upload.wikimedia.org/wikipedia/commons/1/13/Canterbury_Cathedral_cloister2.JPG) - - coords: 51.279811, 1.083001 - eid: Q29265 - -It's a "Syn" From fab0c25c88615994683edc2ed73e7553a956d081 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 21:44:08 +0100 Subject: [PATCH 255/398] Update index.md --- reviews/index.md | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/reviews/index.md b/reviews/index.md index 35e43810..5fc6f6bb 100644 --- a/reviews/index.md +++ b/reviews/index.md @@ -1,16 +1,8 @@ - - - - - + -### 21C reading recommendations +# 21C reading recommendations Patience Agbabi. _Telling Tales_ (2014). Nicola Barker. _Darkmans_ (2011). From aff395c78b5e9a85087b1bd9f61eff96040843a5 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 21:45:06 +0100 Subject: [PATCH 256/398] Update index.md --- reviews/index.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/reviews/index.md b/reviews/index.md index 5fc6f6bb..af721057 100644 --- a/reviews/index.md +++ b/reviews/index.md @@ -1,7 +1,5 @@ - - # 21C reading recommendations Patience Agbabi. _Telling Tales_ (2014). From 3f7b9ce36b1719c30e9b733c9578b9f4044f2c8f Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 21:47:18 +0100 Subject: [PATCH 257/398] Update index.md --- reviews/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/reviews/index.md b/reviews/index.md index af721057..fd87a59f 100644 --- a/reviews/index.md +++ b/reviews/index.md @@ -1,5 +1,7 @@ + + # 21C reading recommendations Patience Agbabi. _Telling Tales_ (2014). From 9fc8e2b325d490272829b9d25b440b249c8cb320 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 21:51:16 +0100 Subject: [PATCH 258/398] Update index.md --- reviews/index.md | 61 +++++++++++++++++++++--------------------------- 1 file changed, 27 insertions(+), 34 deletions(-) diff --git a/reviews/index.md b/reviews/index.md index fd87a59f..6dce0027 100644 --- a/reviews/index.md +++ b/reviews/index.md @@ -4,37 +4,30 @@ # 21C reading recommendations -Patience Agbabi. _Telling Tales_ (2014). -Nicola Barker. _Darkmans_ (2011). -Tim Binding. _The Champion_ (2011). ---. _In the Kingdom of Air_ (2002). -David Cramer Smith. _Medway- (2019). -Laurie Duggan. _The Crab and Winkle Way_ (2009). -Setareh Ebrahimi. [_Galloping Horses_](https://www.wordsmithery.info/setarehebrahimi) (2020). -Barry Fentiman-Hall. [_England, My Dandelion Heart_](https://www.wordsmithery.info/bfh-books) (2016). ---. [_Sketches by Baz_](https://www.wordsmithery.info/bfh-books), (2020). -Maggie Gee. _Blood_ (2019). -Abdulrazak Gurnah. _By the Sea_ (2001). -Maggie Harris. _Canterbury Tales on a Cockrow Morning_ (2012). ---. _In Margate by Lunchtime_ (2015). -S. M. Jenkin. [_Fire in the Head_]( https://www.wordsmithery.info/fire-in-the-head) (2015). -Rosemary McLeish. _Defragmentation_ (2020). ---. _I am a Field_ (2019). -Edward Marston. _A Christmas Railway Mystery_ (2017). -Carolyn Oulton. [_Accidental Fruit_](https://www.worplepress.com/accidental-fruit/?fbclid=IwAR0iMTicaIsO_Ae8HdZ08m0KgQSvmjydKumvlC5uE1KUtVJb6sX7WMbuZag) (2016). -Sonia Overall. _The Realm of Shells_ (2006). -Matthew Pearl, _The Last Dickens_ (2009). -Prescott, Victoria. _Inheritance of Secrets_ -Janet Pywell. _Book of Hours_ (a Mikky dos Santos Thriller) (2017). -Danny Rhodes. _Asboville_ (2006). -David Seabrook. _All the Devils Are Here_ (2002). -Fiona Sinclair. _Ladies Who Lunch_(https://sites.google.com/a/lapwingpublications.com/lapwing-store/fiona-sinclair) (2014). -[_A Talent for Hats_](https://www.dempseyandwindle.com/fionasinclair.html) (2017). -[_The Time Travellers’ Picnic_](https://www.dempseyandwindle.com/fionasinclair.html) (2019). -Jonathan Terranova [_ Longing for more_]( https://www.wordsmithery.info/longing-for-more) (2015). -Scarlett Thomas. _The End of Mr Y_ (2006). - -Julie Wassmer. _Whitstable Pearl_ 7 book series (2015-2020). - - - +- Patience Agbabi. _Telling Tales_ (2014). +- Nicola Barker. _Darkmans_ (2011). +- Tim Binding. _The Champion_ (2011). +- --. _In the Kingdom of Air_ (2002). +- David Cramer Smith. _Medway- (2019). +- Laurie Duggan. _The Crab and Winkle Way_ (2009). +- Setareh Ebrahimi. [_Galloping Horses_](https://www.wordsmithery.info/setarehebrahimi) (2020). +- Barry Fentiman-Hall. [_England, My Dandelion Heart_](https://www.wordsmithery.info/bfh-books) (2016). +- --. [_Sketches by Baz_](https://www.wordsmithery.info/bfh-books), (2020). +- Maggie Gee. _Blood_ (2019). +- Abdulrazak Gurnah. _By the Sea_ (2001). +- Maggie Harris. _Canterbury Tales on a Cockrow Morning_ (2012). +- --. _In Margate by Lunchtime_ (2015). +- S. M. Jenkin. [_Fire in the Head_]( https://www.wordsmithery.info/fire-in-the-head) (2015). +- Rosemary McLeish. _Defragmentation_ (2020). +- --. _I am a Field_ (2019). +- Edward Marston. _A Christmas Railway Mystery_ (2017). +- Carolyn Oulton. [_Accidental Fruit_](https://www.worplepress.com/accidental-fruit/?fbclid=IwAR0iMTicaIsO_Ae8HdZ08m0KgQSvmjydKumvlC5uE1KUtVJb6sX7WMbuZag) (2016). +- Sonia Overall. _The Realm of Shells_ (2006). +- Janet Pywell. _Book of Hours_ (a Mikky dos Santos Thriller) (2017). +- Danny Rhodes. _Asboville_ (2006). +- David Seabrook. _All the Devils Are Here_ (2002). +- Fiona Sinclair. _Ladies Who Lunch_(https://sites.google.com/a/lapwingpublications.com/lapwing-store/fiona-sinclair) (2014). +- [_A Talent for Hats_](https://www.dempseyandwindle.com/fionasinclair.html) (2017). +- [_The Time Travellers’ Picnic_](https://www.dempseyandwindle.com/fionasinclair.html) (2019). +- Jonathan Terranova [_ Longing for more_]( https://www.wordsmithery.info/longing-for-more) (2015). +- Scarlett Thomas. _The End of Mr Y_ (2006). From 7860945d239449fc3c1dcd99485c741712637eba Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 21:54:14 +0100 Subject: [PATCH 259/398] Update index.md --- reviews/index.md | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/reviews/index.md b/reviews/index.md index 6dce0027..7beb365c 100644 --- a/reviews/index.md +++ b/reviews/index.md @@ -1,6 +1,17 @@ - + - +# {.cards} + +## +**[David Seabrook](21c-seabrook-biography)** + +- author: Dr Christian Taylor + +![](https://iiif.juncture-digital.org/thumbnail?url=https://raw.githubusercontent.com/kent-map/kent/main/images/thumbnails/21c.jpg) + +The word mystery comes to mind when approaching Seabrook and his work - a fitting word, given the author’s obsession with the local lore and hidden historical disjecta membra of Kent’s coastal towns. # 21C reading recommendations From 036a02a95094cda0ab151e69f9103e69f9c7b15c Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 21:54:47 +0100 Subject: [PATCH 260/398] Update index.md --- reviews/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/reviews/index.md b/reviews/index.md index 7beb365c..6fa0ceec 100644 --- a/reviews/index.md +++ b/reviews/index.md @@ -1,3 +1,5 @@ + + From bbe8fb6c46b997410733a6b0ec2a3cdf385ed069 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 21:56:24 +0100 Subject: [PATCH 261/398] Update index.md --- reviews/index.md | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/reviews/index.md b/reviews/index.md index 6fa0ceec..794b1c56 100644 --- a/reviews/index.md +++ b/reviews/index.md @@ -1,19 +1,7 @@ - -# {.cards} - -## -**[David Seabrook](21c-seabrook-biography)** - -- author: Dr Christian Taylor - -![](https://iiif.juncture-digital.org/thumbnail?url=https://raw.githubusercontent.com/kent-map/kent/main/images/thumbnails/21c.jpg) - -The word mystery comes to mind when approaching Seabrook and his work - a fitting word, given the author’s obsession with the local lore and hidden historical disjecta membra of Kent’s coastal towns. + title="21st Century Kent"> # 21C reading recommendations From 5c906bb9e14f0670553cb73487730b83d58136af Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 21:58:52 +0100 Subject: [PATCH 262/398] Update index.md --- reviews/index.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/reviews/index.md b/reviews/index.md index 794b1c56..5f120677 100644 --- a/reviews/index.md +++ b/reviews/index.md @@ -1,10 +1,11 @@ - + # 21C reading recommendations +We hope you will enjoy these books about Kent or by Kent authors. + - Patience Agbabi. _Telling Tales_ (2014). - Nicola Barker. _Darkmans_ (2011). - Tim Binding. _The Champion_ (2011). From 6207ac7a10ef521753ee6c25b63a0d316fccaa6b Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 22:00:29 +0100 Subject: [PATCH 263/398] Update index.md --- reviews/index.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/reviews/index.md b/reviews/index.md index 5f120677..e300aae9 100644 --- a/reviews/index.md +++ b/reviews/index.md @@ -1,6 +1,5 @@ - - + # 21C reading recommendations From 38a93f524a832ed20472573e45f5dc20aae015e6 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 22:02:24 +0100 Subject: [PATCH 264/398] Update index.md --- reviews/index.md | 32 +++----------------------------- 1 file changed, 3 insertions(+), 29 deletions(-) diff --git a/reviews/index.md b/reviews/index.md index e300aae9..5300aedf 100644 --- a/reviews/index.md +++ b/reviews/index.md @@ -1,34 +1,8 @@ - + -# 21C reading recommendations +# Book Reviews We hope you will enjoy these books about Kent or by Kent authors. -- Patience Agbabi. _Telling Tales_ (2014). -- Nicola Barker. _Darkmans_ (2011). -- Tim Binding. _The Champion_ (2011). -- --. _In the Kingdom of Air_ (2002). -- David Cramer Smith. _Medway- (2019). -- Laurie Duggan. _The Crab and Winkle Way_ (2009). -- Setareh Ebrahimi. [_Galloping Horses_](https://www.wordsmithery.info/setarehebrahimi) (2020). -- Barry Fentiman-Hall. [_England, My Dandelion Heart_](https://www.wordsmithery.info/bfh-books) (2016). -- --. [_Sketches by Baz_](https://www.wordsmithery.info/bfh-books), (2020). -- Maggie Gee. _Blood_ (2019). -- Abdulrazak Gurnah. _By the Sea_ (2001). -- Maggie Harris. _Canterbury Tales on a Cockrow Morning_ (2012). -- --. _In Margate by Lunchtime_ (2015). -- S. M. Jenkin. [_Fire in the Head_]( https://www.wordsmithery.info/fire-in-the-head) (2015). -- Rosemary McLeish. _Defragmentation_ (2020). -- --. _I am a Field_ (2019). -- Edward Marston. _A Christmas Railway Mystery_ (2017). -- Carolyn Oulton. [_Accidental Fruit_](https://www.worplepress.com/accidental-fruit/?fbclid=IwAR0iMTicaIsO_Ae8HdZ08m0KgQSvmjydKumvlC5uE1KUtVJb6sX7WMbuZag) (2016). -- Sonia Overall. _The Realm of Shells_ (2006). -- Janet Pywell. _Book of Hours_ (a Mikky dos Santos Thriller) (2017). -- Danny Rhodes. _Asboville_ (2006). -- David Seabrook. _All the Devils Are Here_ (2002). -- Fiona Sinclair. _Ladies Who Lunch_(https://sites.google.com/a/lapwingpublications.com/lapwing-store/fiona-sinclair) (2014). -- [_A Talent for Hats_](https://www.dempseyandwindle.com/fionasinclair.html) (2017). -- [_The Time Travellers’ Picnic_](https://www.dempseyandwindle.com/fionasinclair.html) (2019). -- Jonathan Terranova [_ Longing for more_]( https://www.wordsmithery.info/longing-for-more) (2015). -- Scarlett Thomas. _The End of Mr Y_ (2006). + From b380ab9a1c5b8018225bcdd9efc80949b7ffbbfc Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 22:07:25 +0100 Subject: [PATCH 265/398] Rename index.md to index1.md --- reviews/{index.md => index1.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename reviews/{index.md => index1.md} (100%) diff --git a/reviews/index.md b/reviews/index1.md similarity index 100% rename from reviews/index.md rename to reviews/index1.md From 2cce43203bb3247ec9304ea7302bf9a2dc7d86fb Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 22:08:09 +0100 Subject: [PATCH 266/398] Update Reviews.vue --- custom/components/Reviews.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom/components/Reviews.vue b/custom/components/Reviews.vue index 1265dc1b..6dc985f5 100644 --- a/custom/components/Reviews.vue +++ b/custom/components/Reviews.vue @@ -79,7 +79,7 @@ module.exports = { var a_heading = a.getElementsByTagName('h2')[0].innerHTML var b_heading = b.getElementsByTagName('h2')[0].innerHTML return a_heading.localeCompare(b_heading) - }).forEach(function(val, index) { + }).forEach(function(val, index1) { cards_container.appendChild(val) }) From 64bfd521f7b5037543762b5b40151dda688bcc41 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 22:13:40 +0100 Subject: [PATCH 267/398] Update index1.md --- reviews/index1.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/reviews/index1.md b/reviews/index1.md index 5300aedf..5cc1a86c 100644 --- a/reviews/index1.md +++ b/reviews/index1.md @@ -5,4 +5,15 @@ We hope you will enjoy these books about Kent or by Kent authors. +## {.cards} + +### +**[David Seabrook](21c-seabrook-biography)** + +- author: Dr Christian Taylor + +![](https://iiif.juncture-digital.org/thumbnail?url=https://raw.githubusercontent.com/kent-map/kent/main/images/thumbnails/21c.jpg) + +The word mystery comes to mind when approaching Seabrook and his work - a fitting word, given the author’s obsession with the local lore and hidden historical disjecta membra of Kent’s coastal towns. + From 5af9ca3e80afd53254d6f03448edb6508b7ae27b Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 18 Oct 2021 22:15:13 +0100 Subject: [PATCH 268/398] Update index1.md --- reviews/index1.md | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/reviews/index1.md b/reviews/index1.md index 5cc1a86c..c00ea87f 100644 --- a/reviews/index1.md +++ b/reviews/index1.md @@ -5,15 +5,5 @@ We hope you will enjoy these books about Kent or by Kent authors. -## {.cards} - -### -**[David Seabrook](21c-seabrook-biography)** - -- author: Dr Christian Taylor - -![](https://iiif.juncture-digital.org/thumbnail?url=https://raw.githubusercontent.com/kent-map/kent/main/images/thumbnails/21c.jpg) - -The word mystery comes to mind when approaching Seabrook and his work - a fitting word, given the author’s obsession with the local lore and hidden historical disjecta membra of Kent’s coastal towns. - - +## +**[Dr Syn](drsyn)** From bc49c05466e41d4cb945ab91d02620f495906d62 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Tue, 19 Oct 2021 09:22:30 +0100 Subject: [PATCH 269/398] Update index.md --- index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.md b/index.md index d96a0094..3c471fbd 100644 --- a/index.md +++ b/index.md @@ -23,7 +23,7 @@ The ancient lavatory at Canterbury Cathedral where the monks washed before and a ## St Augustine's Abbey (Now and Then) -![](https://upload.wikimedia.org/wikipedia/commons/thumb/6/60/Augustine_Abbey.jpg/320px-Augustine_Abbey.jpg) +![](https://stor.artstor.org/stor/f958882b-3914-448a-a35c-fca8e966a0fd.jpeg) coords: 51.278128, 1.088206 eid: Q334303 From 2661a1f6ac898f1027ddb65f9017e050102c0da5 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Tue, 19 Oct 2021 09:23:43 +0100 Subject: [PATCH 270/398] Update index.md --- index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.md b/index.md index 3c471fbd..d96a0094 100644 --- a/index.md +++ b/index.md @@ -23,7 +23,7 @@ The ancient lavatory at Canterbury Cathedral where the monks washed before and a ## St Augustine's Abbey (Now and Then) -![](https://stor.artstor.org/stor/f958882b-3914-448a-a35c-fca8e966a0fd.jpeg) +![](https://upload.wikimedia.org/wikipedia/commons/thumb/6/60/Augustine_Abbey.jpg/320px-Augustine_Abbey.jpg) coords: 51.278128, 1.088206 eid: Q334303 From 08cb83846f78f48ef4842edf21eb6b87f71a1253 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Tue, 19 Oct 2021 12:36:15 +0100 Subject: [PATCH 271/398] Update canterbury-high-street-now-and-then.md --- pages/canterbury-high-street-now-and-then.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/canterbury-high-street-now-and-then.md b/pages/canterbury-high-street-now-and-then.md index 7571fa11..5f4b027e 100644 --- a/pages/canterbury-high-street-now-and-then.md +++ b/pages/canterbury-high-street-now-and-then.md @@ -2,8 +2,8 @@ - - + + # Canterbury High Street From ebb08c79766d61dd870a1b121646de98ddef8ad9 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Wed, 3 Nov 2021 19:12:33 +0000 Subject: [PATCH 272/398] Create rochester-cathedral-essay --- pages/rochester-cathedral-essay | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 pages/rochester-cathedral-essay diff --git a/pages/rochester-cathedral-essay b/pages/rochester-cathedral-essay new file mode 100644 index 00000000..0091c564 --- /dev/null +++ b/pages/rochester-cathedral-essay @@ -0,0 +1,11 @@ +Rochester Cathedral + +Rochester Cathedral is the second oldest cathedral in England. It was founded on land donated by King Ethelbert in AD 604 by the Bishop Justus – a missionary who travelled to the south of England with Augustine of Canterbury to spread Christianity in the Pagan regions. As such, it features both Norman architecture (the nave and some of the crypt), as well as Gothic architecture. Additionally, it houses the 14th century Chapter Library door, which is one of the oldest doors in the country. + +It arose as a site of pilgrimage in the 13th century, after the murder of ‘William of Perth’ – a Scottish baker. This was due to the shrine in which his corpse was brought, although it unfortunately no longer stands, reportedly caused miracles. + +Following the successful Norman invasion of 1066, the new King William the Conqueror gifted the Cathedral and its related estates to his half-brother, Odo of Bayeux. The following mismanagement under Odo was so severe that the building was left near destroyed. After Odo’s downfall in 1072, the Cathedral came under the ownership of Bishop Gundulf in 1077. An adept architect, he organised the construction of numerous additions to the building. Among these was a tower that bears his name today. This same Bishop went on to found St Bartholomew’s Hospital, close to Rochester Cathedral. + +During the civil war, Simon de Montfort desecrated the cathedral in 1264 – he stole money and destroyed documents from the Cathedral. Once he was defeated in the following year, the place saw a period of relative stability, and many parts of it were rebuilt and repaired. + +Henry VIII’s policy of the dissolution of the monasteries, during the 16th century, led to the Cathedral once again falling into disrepair. The cathedral only began to be rebuilt once it was visited by William Laud, the Archbishop of Canterbury, in 1633, who made a complaint about the maintenance of the place: by 1634 many of its shortcomings had been fixed. From a3de29d5bde2bd9f08b8fc06f853e7446f29a477 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Wed, 3 Nov 2021 19:17:34 +0000 Subject: [PATCH 273/398] Update rochester-cathedral-essay --- pages/rochester-cathedral-essay | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/rochester-cathedral-essay b/pages/rochester-cathedral-essay index 0091c564..78c016db 100644 --- a/pages/rochester-cathedral-essay +++ b/pages/rochester-cathedral-essay @@ -1,4 +1,4 @@ -Rochester Cathedral +### Rochester Cathedral Rochester Cathedral is the second oldest cathedral in England. It was founded on land donated by King Ethelbert in AD 604 by the Bishop Justus – a missionary who travelled to the south of England with Augustine of Canterbury to spread Christianity in the Pagan regions. As such, it features both Norman architecture (the nave and some of the crypt), as well as Gothic architecture. Additionally, it houses the 14th century Chapter Library door, which is one of the oldest doors in the country. From 2af1d164e86a52bd2200fb29ca1bfd260b77dc01 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Wed, 3 Nov 2021 19:18:17 +0000 Subject: [PATCH 274/398] Rename rochester-cathedral-essay to rochester-cathedral-essay.md --- pages/{rochester-cathedral-essay => rochester-cathedral-essay.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename pages/{rochester-cathedral-essay => rochester-cathedral-essay.md} (100%) diff --git a/pages/rochester-cathedral-essay b/pages/rochester-cathedral-essay.md similarity index 100% rename from pages/rochester-cathedral-essay rename to pages/rochester-cathedral-essay.md From 9bd129e4dd322b20905bdf326ea4d7c4c1bf3d4d Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Wed, 17 Nov 2021 21:33:08 +0000 Subject: [PATCH 275/398] Create kent-defences-in-the-spanish-armada.md --- pages/kent-defences-in-the-spanish-armada.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 pages/kent-defences-in-the-spanish-armada.md diff --git a/pages/kent-defences-in-the-spanish-armada.md b/pages/kent-defences-in-the-spanish-armada.md new file mode 100644 index 00000000..8e7fed4b --- /dev/null +++ b/pages/kent-defences-in-the-spanish-armada.md @@ -0,0 +1,2 @@ +According to Geoffrey Parker, the English government did not predict that the Armada were going to invade through north-east Kent, even though this is where the Romans, Saxons and Danes had invaded before. Parma's army would have had plenty of food during the invasion, as Kent's crops were being harvested at the time. Parker’s discussion of Kent’s defences in his article “If the Armada had landed” is extremely useful in giving us a sense of how strongly Kent could have defended itself against an attack, and the potentially devastating outcome had the Spanish ships succeeded in their voyage to Britain. +Parker tells us that as part of the defences in Kent, prior to the Armada, Henry VIII had put in place artillery forts at Sandown, Deal, Walmer, Sandgate and Camber. However, he tells us that these forts were not built from structures strong enough to withstand a heavy attack like that which was planned by King Philip II of Spain. Only Upnor Castle had strong enough bastions. Canterbury and Rochester were only protected by their old medieval walls, and Rochester Castle was in a state of decay. Between Medway and Margate, there were no defences, and it is in this weak area that King Philip II intended to first land the Armada in England. Forces against Spain were not in the correct places close to the attack – with bigger defences being in place on the Isle of Wight and around the Norfolk coast. From 3be6ca5baeac9023acee576be732f805ebf9deed Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Wed, 17 Nov 2021 21:34:23 +0000 Subject: [PATCH 276/398] Update and rename kent-defences-in-the-spanish-armada.md to kent-defences-against-the-spanish-armada.md --- ...h-armada.md => kent-defences-against-the-spanish-armada.md} | 3 +++ 1 file changed, 3 insertions(+) rename pages/{kent-defences-in-the-spanish-armada.md => kent-defences-against-the-spanish-armada.md} (94%) diff --git a/pages/kent-defences-in-the-spanish-armada.md b/pages/kent-defences-against-the-spanish-armada.md similarity index 94% rename from pages/kent-defences-in-the-spanish-armada.md rename to pages/kent-defences-against-the-spanish-armada.md index 8e7fed4b..0551476c 100644 --- a/pages/kent-defences-in-the-spanish-armada.md +++ b/pages/kent-defences-against-the-spanish-armada.md @@ -1,2 +1,5 @@ +Read Hannah Jennison's article on Kent defences againsts the Spanish Armada + According to Geoffrey Parker, the English government did not predict that the Armada were going to invade through north-east Kent, even though this is where the Romans, Saxons and Danes had invaded before. Parma's army would have had plenty of food during the invasion, as Kent's crops were being harvested at the time. Parker’s discussion of Kent’s defences in his article “If the Armada had landed” is extremely useful in giving us a sense of how strongly Kent could have defended itself against an attack, and the potentially devastating outcome had the Spanish ships succeeded in their voyage to Britain. + Parker tells us that as part of the defences in Kent, prior to the Armada, Henry VIII had put in place artillery forts at Sandown, Deal, Walmer, Sandgate and Camber. However, he tells us that these forts were not built from structures strong enough to withstand a heavy attack like that which was planned by King Philip II of Spain. Only Upnor Castle had strong enough bastions. Canterbury and Rochester were only protected by their old medieval walls, and Rochester Castle was in a state of decay. Between Medway and Margate, there were no defences, and it is in this weak area that King Philip II intended to first land the Armada in England. Forces against Spain were not in the correct places close to the attack – with bigger defences being in place on the Isle of Wight and around the Norfolk coast. From 8405b8588bf845845947bed54c826f50f2220a24 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Wed, 17 Nov 2021 21:36:36 +0000 Subject: [PATCH 277/398] Update kent-defences-against-the-spanish-armada.md --- pages/kent-defences-against-the-spanish-armada.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pages/kent-defences-against-the-spanish-armada.md b/pages/kent-defences-against-the-spanish-armada.md index 0551476c..c86e9de3 100644 --- a/pages/kent-defences-against-the-spanish-armada.md +++ b/pages/kent-defences-against-the-spanish-armada.md @@ -3,3 +3,7 @@ Read Hannah Jennison's article on Kent defences againsts the Spanish Armada According to Geoffrey Parker, the English government did not predict that the Armada were going to invade through north-east Kent, even though this is where the Romans, Saxons and Danes had invaded before. Parma's army would have had plenty of food during the invasion, as Kent's crops were being harvested at the time. Parker’s discussion of Kent’s defences in his article “If the Armada had landed” is extremely useful in giving us a sense of how strongly Kent could have defended itself against an attack, and the potentially devastating outcome had the Spanish ships succeeded in their voyage to Britain. Parker tells us that as part of the defences in Kent, prior to the Armada, Henry VIII had put in place artillery forts at Sandown, Deal, Walmer, Sandgate and Camber. However, he tells us that these forts were not built from structures strong enough to withstand a heavy attack like that which was planned by King Philip II of Spain. Only Upnor Castle had strong enough bastions. Canterbury and Rochester were only protected by their old medieval walls, and Rochester Castle was in a state of decay. Between Medway and Margate, there were no defences, and it is in this weak area that King Philip II intended to first land the Armada in England. Forces against Spain were not in the correct places close to the attack – with bigger defences being in place on the Isle of Wight and around the Norfolk coast. + +### References + +Parker, Geoffrey. “If the Armada had landed.” History, vol. 61, no. 203, Wiley, 1976, pp. 358–68, [Accessed 17 November 2021] From cc4d2b797176f738f57574a3904bf1ba04dc8587 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Wed, 17 Nov 2021 21:38:28 +0000 Subject: [PATCH 278/398] Create ada-lovelace-essay.md --- pages/ada-lovelace-essay.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 pages/ada-lovelace-essay.md diff --git a/pages/ada-lovelace-essay.md b/pages/ada-lovelace-essay.md new file mode 100644 index 00000000..c52be09c --- /dev/null +++ b/pages/ada-lovelace-essay.md @@ -0,0 +1,19 @@ +Ada Lovelace (Ada King, countess of Lovelace) +10 December 1815 – 27 November 1852 +Places: London (Marylebone), Nottingham (Church of St. Mary Magdalene, Hucknall), Canterbury + +From early childhood, Ada Lovelace showed signs of a keen mathematical mind. +She was born into a tumultuous family, and the rift between her parents – Lord and Lady Byron – had a profound impact on Ada’s life. Lord Byron left the family shortly after Ada’s birth, so she was raised solely her mother. Lady Byron encouraged Ada’s interest in science, but forbade Ada from communicating and finding out more about her father. As a result, Ada and her mother had a strained relationship and often struggled to get along. +Ada also suffered from prolonged illness as a child – from the age of eight, she experienced severe headaches and was paralyzed after contracting measles. +Nevertheless, despite her unstable family and illness, Ada was very curious and enjoyed developing her scientific knowledge. As a teenager, she investigated the flight of birds – their wings, anatomy and abilites – and decided to write a book (Flyology) about her findings. +Throught her life, Ada got to know many scientists and mathematicians of the time – she was close friends with her tutor, Mary Somerville, and was aquainted with Sir David Brewster, Michael Faraday and Charles Dickens. +On 8 July 1835, she married William King and over their marriage they had three children, Anna Isabella, Ralph Gordon, and Byron (whom Ada named after her late father). +However, Ada is most famous for her collaboration with mathematician Charles Babbage. She met him in June 1833, and he invited Ada to see the prototype for his difference engine – she was captivated by his work and Babbage, in turn, recognized Ada’s talent and contribution. +Between 1842 and 1843, Ada translated Luigi Menabrea’s article on Babbage’s machine, and contributed her own notes – she was said to be the first to see the analytical engine’s potential and her algorithm for finding Berounoulli numbers is widely cited as the first computer algorithm in history. +Ada’s work was well-received during her lifetime and recognized by her peers, but unfortunately she only lived to be 36 years old, dying of uterine cancer in 1852. Her impact and legacy not only on the field of science, but on the people who knew her, is captured in the words of Cambridge scholar Augustus De Morgan, who wrote about Ada that “had any young beginner, about to go to Cambridge, shewn the same power[s], I should have prophesied … that they would have certainly made him an original mathematical investigator, perhaps of first rate eminence.” +Ada Lovelace is a significant figure in the history of computer science not just for her achievements, but also because of the obstacles she had to overcome, including gender prejudice and ill health, and remains an inspiring role model for young scientists today – Ada (the computer language created for the United States Department of Defence) was named after her, Ada Lovelace Day is celebrated on the second Tuesday of October, and in 2015, illustration of Ada Lovelace and Charles Babbage were included in new British passports, showing the extent of her influence and importance as a pioneer of programming and science. +Bibliography: +“Ada Lovelace.” Wikipedia 11 May 2021. Wikipedia. Web. +Demming, Anna. “Ada Lovelace.” New Scientist. N.p., n.d. Web. +"Ada Lovelace | Babbage Engine | Computer History Museum". Web. + From f688025e30c2698cab098490d5700cc29560f3a3 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Wed, 17 Nov 2021 21:39:11 +0000 Subject: [PATCH 279/398] Rename kent-defences-against-the-spanish-armada.md to kent-defences-against-the-spanish-armada-essay.md --- ...rmada.md => kent-defences-against-the-spanish-armada-essay.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename pages/{kent-defences-against-the-spanish-armada.md => kent-defences-against-the-spanish-armada-essay.md} (100%) diff --git a/pages/kent-defences-against-the-spanish-armada.md b/pages/kent-defences-against-the-spanish-armada-essay.md similarity index 100% rename from pages/kent-defences-against-the-spanish-armada.md rename to pages/kent-defences-against-the-spanish-armada-essay.md From 5b93d257865c4174b72000a6ecae040ee3a65e89 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Wed, 17 Nov 2021 21:40:14 +0000 Subject: [PATCH 280/398] Update ada-lovelace-essay.md --- pages/ada-lovelace-essay.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pages/ada-lovelace-essay.md b/pages/ada-lovelace-essay.md index c52be09c..5d360f60 100644 --- a/pages/ada-lovelace-essay.md +++ b/pages/ada-lovelace-essay.md @@ -1,3 +1,5 @@ +Read Polina Dubakova's article on Ada Lovelace + Ada Lovelace (Ada King, countess of Lovelace) 10 December 1815 – 27 November 1852 Places: London (Marylebone), Nottingham (Church of St. Mary Magdalene, Hucknall), Canterbury From 64b98a420b0447bb62bfb97fb01ed9c4c9d23862 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Wed, 24 Nov 2021 19:56:23 +0000 Subject: [PATCH 281/398] Update ada-lovelace-essay.md --- pages/ada-lovelace-essay.md | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/pages/ada-lovelace-essay.md b/pages/ada-lovelace-essay.md index 5d360f60..60261298 100644 --- a/pages/ada-lovelace-essay.md +++ b/pages/ada-lovelace-essay.md @@ -6,16 +6,23 @@ Places: London (Marylebone), Nottingham (Church of St. Mary Magdalene, Hucknall) From early childhood, Ada Lovelace showed signs of a keen mathematical mind. She was born into a tumultuous family, and the rift between her parents – Lord and Lady Byron – had a profound impact on Ada’s life. Lord Byron left the family shortly after Ada’s birth, so she was raised solely her mother. Lady Byron encouraged Ada’s interest in science, but forbade Ada from communicating and finding out more about her father. As a result, Ada and her mother had a strained relationship and often struggled to get along. + Ada also suffered from prolonged illness as a child – from the age of eight, she experienced severe headaches and was paralyzed after contracting measles. Nevertheless, despite her unstable family and illness, Ada was very curious and enjoyed developing her scientific knowledge. As a teenager, she investigated the flight of birds – their wings, anatomy and abilites – and decided to write a book (Flyology) about her findings. + Throught her life, Ada got to know many scientists and mathematicians of the time – she was close friends with her tutor, Mary Somerville, and was aquainted with Sir David Brewster, Michael Faraday and Charles Dickens. + On 8 July 1835, she married William King and over their marriage they had three children, Anna Isabella, Ralph Gordon, and Byron (whom Ada named after her late father). However, Ada is most famous for her collaboration with mathematician Charles Babbage. She met him in June 1833, and he invited Ada to see the prototype for his difference engine – she was captivated by his work and Babbage, in turn, recognized Ada’s talent and contribution. + Between 1842 and 1843, Ada translated Luigi Menabrea’s article on Babbage’s machine, and contributed her own notes – she was said to be the first to see the analytical engine’s potential and her algorithm for finding Berounoulli numbers is widely cited as the first computer algorithm in history. + Ada’s work was well-received during her lifetime and recognized by her peers, but unfortunately she only lived to be 36 years old, dying of uterine cancer in 1852. Her impact and legacy not only on the field of science, but on the people who knew her, is captured in the words of Cambridge scholar Augustus De Morgan, who wrote about Ada that “had any young beginner, about to go to Cambridge, shewn the same power[s], I should have prophesied … that they would have certainly made him an original mathematical investigator, perhaps of first rate eminence.” + Ada Lovelace is a significant figure in the history of computer science not just for her achievements, but also because of the obstacles she had to overcome, including gender prejudice and ill health, and remains an inspiring role model for young scientists today – Ada (the computer language created for the United States Department of Defence) was named after her, Ada Lovelace Day is celebrated on the second Tuesday of October, and in 2015, illustration of Ada Lovelace and Charles Babbage were included in new British passports, showing the extent of her influence and importance as a pioneer of programming and science. -Bibliography: -“Ada Lovelace.” Wikipedia 11 May 2021. Wikipedia. Web. -Demming, Anna. “Ada Lovelace.” New Scientist. N.p., n.d. Web. -"Ada Lovelace | Babbage Engine | Computer History Museum". Web. + +### Bibliography: +“Ada Lovelace.” Wikipedia 11 May 2021. Wikipedia. Web. +Demming, Anna. “Ada Lovelace.” New Scientist. N.p., n.d. Web. +"Ada Lovelace | Babbage Engine | Computer History Museum". Web. From 5a1d11f0936fee3c5e3622269ed0d291fef51718 Mon Sep 17 00:00:00 2001 From: Ron Snyder Date: Fri, 11 Feb 2022 08:52:10 -0500 Subject: [PATCH 282/398] Update Compare.vue --- components/Compare.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Compare.vue b/components/Compare.vue index c56669e1..d8074162 100644 --- a/components/Compare.vue +++ b/components/Compare.vue @@ -21,7 +21,7 @@ module.exports = { viewerLabel: 'Image Compare', viewerIcon: 'fas fa-images', dependencies: ['https://cdn.jsdelivr.net/npm/openseadragon@2.4/build/openseadragon/openseadragon.min.js', - 'https://cuberis.github.io/openseadragon-curtain-sync/src/openseadragon-curtain-sync.min.js'], + 'https://jstor-labs.github.io/juncture/js/openseadragon-curtain-sync.min.js'], tileSources: [], viewer: null }), From cd41ed4f5d2a25ad6297ad40e0747353f56946bf Mon Sep 17 00:00:00 2001 From: Ron Snyder Date: Fri, 11 Feb 2022 08:56:49 -0500 Subject: [PATCH 283/398] Update NowAndThen.vue --- custom/components/NowAndThen.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/custom/components/NowAndThen.vue b/custom/components/NowAndThen.vue index 78591e2e..e26c04dd 100644 --- a/custom/components/NowAndThen.vue +++ b/custom/components/NowAndThen.vue @@ -13,7 +13,7 @@ const dependencies = [ 'https://cdn.jsdelivr.net/npm/openseadragon@2.4/build/openseadragon/openseadragon.min.js', - 'https://cuberis.github.io/openseadragon-curtain-sync/src/openseadragon-curtain-sync.min.js' + 'https://jstor-labs.github.io/juncture/js/openseadragon-curtain-sync.min.js' ] const iiifService = 'https://iiif.juncture-digital.org' const prefixUrl = 'https://openseadragon.github.io/openseadragon/images/' @@ -164,4 +164,4 @@ module.exports = { font-style: italic; } - \ No newline at end of file + From 5d3b579291431391dea5a7995aec5f251c57645d Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 14 Feb 2022 08:49:08 +0000 Subject: [PATCH 284/398] Create elizabeth-gould-essay.md --- pages/elizabeth-gould-essay.md | 146 +++++++++++++++++++++++++++++++++ 1 file changed, 146 insertions(+) create mode 100644 pages/elizabeth-gould-essay.md diff --git a/pages/elizabeth-gould-essay.md b/pages/elizabeth-gould-essay.md new file mode 100644 index 00000000..4370cc7c --- /dev/null +++ b/pages/elizabeth-gould-essay.md @@ -0,0 +1,146 @@ + + + + + + + + + + + + + + + + + + +On the 18th of July in 1804, in the seaside town of Ramsgate, Mr Nicholas Coxen and Elizabeth Coxen (nee Tomkins) welcomed a baby girl into the world. She was one of the couple’s many children, though sadly only she and three brothers survived their childhood. Though information regarding the early life of the Coxen children is sparse, they were "firmly middle class" through "links to the military" and we can imagine that she lived a typical life fitting for the era [^1].The sons pursued careers as scientists or military personnel, whilst Elizabeth studied subjects that were typical for women of her class and age, including languages, music, and art [^2]. In spite of her relatively ordinary upbringing, she would exceed expectations and become a wonderfully skilful artist. She will contribute invaluably to the world of ornithology with her talents and inspire the next generation of ornithologists. She will be Elizabeth Gould. + + +Some may find the family name “Gould” familiar, especially in ornithological circles, with association to titles such as “The Birdman” or “The Father of Australian Ornithology” who published some of the most famous ornithologic books of the 19th century [^3]. Most would remember the accomplished man as John Gould. He left a remarkable legacy of beautifully illustrated documentation of various animals across the globe. Yet, he was not the sole creditor for his prodigious work. He had the help of a talented partner, his wife Elizabeth, who supported and worked alongside him throughout his career. + + +Again, with not much known about the courtship between the lovers, we can speculate that they met through Elizabeth’s taxidermist brother, Charles Coxen. At 22 years old, Elizabeth grew unsatisfied with her occupation as the governess to the 9-year-old daughter of the Chief of the Office of the King’s Proctor. From accounts in letters to her mother, it is said that she felt life was “miserably-wretched dull” [^4]. Thus, it is possible that she would have wanted an escape from her tedious labour and graduate into a life of domesticity. Some authors had even said that John Gould “rescued” [^5] her with their marriage on January 5, 1829, at St James's Church, Piccadilly [^1]. + + + +However, realistically, John was also “rescued” by Elizabeth. In the early stages of their married life, Elizabeth would often illustrate scientifically accurate images of novelty bird specimens that John prepared for his customers [^6]. Her work promoted her taxidermist husband’s business, which widely expanded his career contacts and allowed him access to the country’s leading naturalists. Thus, in 1830, when presented with a collection of Himalayan bird skins, he proposed a grand idea. He thought to publish a subscriber-paid book to showcase hand-painted lithographs of these rare birds and sell them to affluent collectors and the aforementioned naturalists. It was an ambitious idea, and John knew that his artistic capabilities were limited at best. Elizabeth was more than capable, equipped with valuable education in the arts from her youth. Though it seemed she was initially sceptical of the proposal, as she asked her husband who would transfer the plates to the stones. To this question, John replied, "Why you, of course!" [^7] and thus the couple’s first publication was born. + + +There are no records of Elizabeth’s qualification as a draughtswoman, but she would have most likely been familiar with sketches and watercolour paintings of common botany. Nonetheless, it was very different to drawing photographic representations of feathered animals. This, coupled with her first pregnancy, must have proven to be a taxing challenge. Despite the stress of her new roles as both a mother and draughtswoman, she still spent hours meticulously practising the art of lithography, as taught by a fellow collaborator, Edward Lear [^6]. Finally, after two years of strenuous hard work, her lavishly crafted plates were published in “_A Century of Birds from the Himalaya Mountains_” (1830-1832) accompanied by N. A. Vigors’ factful scientific explanations. Only days after the publication, Elizabeth gave birth to her first son, a baby boy by the name of John Henry. + + +“_A Century of Birds from the Himalaya Mountains_” was massively successful and highlighted Elizabeth’s attentive approach to the smallest of details, even when selecting the right pigments and brushes. The _Picus Brunifrons_ template is an excellent demonstration of the young woman’s talents, where she accurately replicated the finest details with only a single-haired brush [^4]. Shamefully, regardless of Elizabeth’s hours of intensive hard work, her name was notably absent from the title page. Her vigorous contributions were only briefly acknowledged in a short credit on the lower left of each plate - "Drawn from nature by E. Gould" - but none featured her signature. + + +Following the success of their first publication, the Gould couple immediately worked on a more ambitious collaboration in which they titled “_The Birds of Europe_” (1832-1837). This 448-plate publication required the couple to travel all over continental Europe and with each new expedition, Elizabeth’s artistic skills improved [^8]. In contrast to her previous work in “_Century_”, limited to drawing taxidermied specimens, for “_The Birds of Europe_”, Elizabeth could observe breathing, flying, animated birds. With her flourishing artistry, Elizabeth authentically captured the true colouring of their “soft parts” - eyes, neck wattles, skin - in which even the best taxidermy practices could not replicate. The authentic colouring, paired with her choices of more dynamic poses, allowed her designs to stand out from the sea of stiff poses that were favoured in this century. + + +For five exhausting years, Elizabeth dedicated hours upon hours to perfecting “_The Birds of Europe_”, but her role as a mother was not to be forgotten. During this time, she also gave birth to five more children, though only three survived infancy [^8]. Yet again, despite Elizabeth’s tireless efforts, her award came as a small credit in the lower corner of each plate. However, this time the credit not only bore Elizabeth’s initials but John’s as well. He credited his wife for the drawings and lithographs but attributed the "sketches and designs" to his labour. Contrastingly, multiple critics have suggested John did little more than make minor changes to or simply just approved Elizabeth’s sketches [^4]. It was also during this hectic time that a young Charles Darwin recognised Elizabeth’s creative gift and commissioned her to produce 50 lithographic plates for his publication, “_The Zoology of the Voyage of H.M.S. Beagle - Part III Birds_” [^6]. Again, Elizabeth’s name was absent from these plates. + + +Though the “_Century_” and “_Birds of Europe_” were impressive successes, the Goulds were most celebrated for their work in “_Birds of Australia_” (1840-1848). This 7-volume publication was composed of 681 specimens, of which 84 were painted by Elizabeth herself [^6]. Similar to her previous work in the “_Birds of Europe_”, to deliver the highest quality depictions of the foreign specimens to their subscribers, she had to embark on a long journey to Australia to study their organic forms. Subsequently, the couple and their eldest son took off to explore the vast land on the other side of the planet. During their stay in the foreign country, they lived on Elizabeth’s brothers’ farm which later became their base of operations [^1]. + + +This was perhaps Elizabeth’s most exciting period in her life with such an esteemed project in her hands, however, it may have also been her most distressing time. Correspondences in letters to her mother revealed that she was riddled with regrets when she left her home country. She sombrely documented her tough decision to leave her three youngest children - Charles, Eliza, and Louisa - back in England and concerns and worries constantly plagued her mind [^8]. Nevertheless, she had little time to entertain her doubts as she kept busy by preparing hundreds of sketches, drawings, and paintings of the colony’s native wildlife. The most recognised image she produced was that of the Fairy Wren. In her preliminary drawing for the lithographed plate, she confidently presented her signature technique of using soft and controlled pencil strokes to replicate the lifelike features of each specimen. Her attention to detail extended to her selection of watercolours for the pallet, ensuring that they would precisely represent Australia. + + +In 1840, John, Elizabeth and John Henry returned to familiar British soil with a new collection of exotic specimens and a fresh addition to the Gould family - baby Franklin - who was fondly named after Elizabeth's new friends, [Sir John](https://kent-maps.online/19c/19c-franklin-biography/) and Lady Jane Franklin [^1]. Even when reunited with the rest of her children after two long years of separation, Elizabeth could not abandon her work and spent her time carefully transferring her hand-crafted compositions onto stones. Tragically, she did not see the project to its completion as Elizabeth died on 15 August 1841 from a fatal contraction of puerperal fever, following the birth of her third daughter, Sarah, [^4] in Egham, Surrey [^1]. + + +Reportedly, John, devastated by the loss of his 37-year-old wife, memorialised her by naming two Australian birds in her honour - Mrs Gould’s Sunbird and the Gouldian Finch. He accompanied the commemoration with a thankful note, acknowledging Elizabeth’s utmost devotion to their family legacy [^9]. Ultimately, with the unfortunate premature death of his beloved wife, John would outsource a new upcoming artist by the name of Henry Richter to finish the rest of the book using Elizabeth’s remaining sketches and designs [^10]. + + +Elizabeth Gould was a woman of her time, raised to be a loving wife and doting mother, but that is not to discredit her for being an extraordinary artist who contributed many landmark pieces in Victorian ornithology. Though eclipsed by the glory of her husband’s name, it is important to note that she was not just a side character to John's famed story, but rather a remarkable woman in her own right. So, instead of painting her as an oppressed feminine figure of history, we should remember her as an artistically adept maid of Kent, a strong companion to her husband and a caring mother to her children. + + +# References + +[^1]: ["Elizabeth (Coxen) Gould (1804 - 1841)." _WikiTree_. WikiTree Community, 5 Nov 2018. Web.](https://www.wikitree.com/wiki/Coxen-86) Accessed on 21 Jun. 2021 +[^2]: [Castellucci, Adria. “Elizabeth Gould: working wife, Victorian mother.” _The Australian Museum_. The Australian Museum, n.d. Web.](https://australian.museum/learn/collections/museum-archives-library/john-gould/elizabeth-gould-1804-1841/working-wife-and-mother/) Accessed on 1 Jul. 2021 +[^3]: [“John Gould.” _National Portrait Gallery_. Australian National Portrait Gallery, n.d. Web.](https://www.portrait.gov.au/people/john-gould-1804) Accessed on 1 Jul. 2021 +[^4]: [Ashley, Melissa. “Elizabeth Gould.” _The University of Kansas_. The University of Kansas Libraries, n.d. Web.](https://exhibits.lib.ku.edu/exhibits/show/gould/about/elizabeth_gould) Accessed on 21 Jun. 2021 +[^5]: [Russel, Roslyn. _The Business of Nature: John Gould and Australia_. Canberra: The National Library of Australia, 2011. _Google Books_. Web.](https://books.google.co.uk/books?id=71qYuhz9FM8C&lpg=PP1&pg=PA11#v=onepage&q&f=false) Accessed on 8 Sep. 2021 +[^6]: [“The Story of Elizabeth Gould – An Extraordinary Bird Woman.” _Tyne & Wear Archives & Museums Blog_. Tyne & Wear Archives & Museums Staff Members, 5 May 2020. Blog.](https://blog.twmuseums.org.uk/the-story-of-elizabeth-gould-an-extraordinary-bird-woman/) Accessed on 21 Jun. 2021 +[^7]: [Bowdler Sharpe, R. 1893. _An analytical index to the works of the late John Gould_. London: Sotheran. _Biodiversity Heritage Library_. Web.](https://www.biodiversitylibrary.org/item/238898#page/18/mode/1up) Accessed on 8 Sep. 2021 +[^8]: [Alvis, Alexandra K. “Elizabeth Gould: An Accomplished Woman.” _Smithsonian Libraries and Archives Blog_. Smithsonian Libraries and Archives, 29 Mar. 2018. Blog.](https://blog.library.si.edu/blog/2018/03/29/elizabeth-gould-an-accomplished-woman/#.YT9oVn2ndPY) Accessed on 21 Jun. 2021 +[^9]: [Gould, John F.R.S., 1848. _The Birds of Australia_. Vol. 3. London. _Biodiversity Heritage Library_. Web.](https://www.biodiversitylibrary.org/item/187975#page/7/mode/1up) Accessed on 8 Sep. 2021 +[^10]: [“Elizabeth Gould (1804-1841)” _The Australian Museum_. The Australian Museum, n.d. Web.](https://australian.museum/learn/collections/museum-archives-library/john-gould/elizabeth-gould-1804-1841/) Accessed on 1 Jul. 2021 From f40882483fcb7c003bbfd7163f19111f0550c6e2 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 14 Feb 2022 08:57:45 +0000 Subject: [PATCH 285/398] Update index.md --- index.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/index.md b/index.md index d96a0094..226b3989 100644 --- a/index.md +++ b/index.md @@ -66,6 +66,13 @@ The Dane John Gardens were created on common land by Alderman James Simmons in 1 The Dane John Mound is a Roman cemetery in Canterbury. +## Elizabeh Gould (Essay) + +![](https://upload.wikimedia.org/wikipedia/commons/e/e5/Elizabeth_Gould.jpg) + + coords: 51.2038, 1.2415 + eid: Q736439 + ## The House of Agnes (Now and Then) coords: 51.2824, 1.07365 From 8d26c9b7cdbd1d3e6048e61f5fe267053cd0aff0 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Mon, 14 Feb 2022 09:01:30 +0000 Subject: [PATCH 286/398] Update elizabeth-gould-essay.md --- pages/elizabeth-gould-essay.md | 108 +-------------------------------- 1 file changed, 1 insertion(+), 107 deletions(-) diff --git a/pages/elizabeth-gould-essay.md b/pages/elizabeth-gould-essay.md index 4370cc7c..de04c8b1 100644 --- a/pages/elizabeth-gould-essay.md +++ b/pages/elizabeth-gould-essay.md @@ -1,136 +1,30 @@ - - - - - - - - - - - - - - - - - +## Elizabeth Gould On the 18th of July in 1804, in the seaside town of Ramsgate, Mr Nicholas Coxen and Elizabeth Coxen (nee Tomkins) welcomed a baby girl into the world. She was one of the couple’s many children, though sadly only she and three brothers survived their childhood. Though information regarding the early life of the Coxen children is sparse, they were "firmly middle class" through "links to the military" and we can imagine that she lived a typical life fitting for the era [^1].The sons pursued careers as scientists or military personnel, whilst Elizabeth studied subjects that were typical for women of her class and age, including languages, music, and art [^2]. In spite of her relatively ordinary upbringing, she would exceed expectations and become a wonderfully skilful artist. She will contribute invaluably to the world of ornithology with her talents and inspire the next generation of ornithologists. She will be Elizabeth Gould. - Some may find the family name “Gould” familiar, especially in ornithological circles, with association to titles such as “The Birdman” or “The Father of Australian Ornithology” who published some of the most famous ornithologic books of the 19th century [^3]. Most would remember the accomplished man as John Gould. He left a remarkable legacy of beautifully illustrated documentation of various animals across the globe. Yet, he was not the sole creditor for his prodigious work. He had the help of a talented partner, his wife Elizabeth, who supported and worked alongside him throughout his career. - Again, with not much known about the courtship between the lovers, we can speculate that they met through Elizabeth’s taxidermist brother, Charles Coxen. At 22 years old, Elizabeth grew unsatisfied with her occupation as the governess to the 9-year-old daughter of the Chief of the Office of the King’s Proctor. From accounts in letters to her mother, it is said that she felt life was “miserably-wretched dull” [^4]. Thus, it is possible that she would have wanted an escape from her tedious labour and graduate into a life of domesticity. Some authors had even said that John Gould “rescued” [^5] her with their marriage on January 5, 1829, at St James's Church, Piccadilly [^1]. - - However, realistically, John was also “rescued” by Elizabeth. In the early stages of their married life, Elizabeth would often illustrate scientifically accurate images of novelty bird specimens that John prepared for his customers [^6]. Her work promoted her taxidermist husband’s business, which widely expanded his career contacts and allowed him access to the country’s leading naturalists. Thus, in 1830, when presented with a collection of Himalayan bird skins, he proposed a grand idea. He thought to publish a subscriber-paid book to showcase hand-painted lithographs of these rare birds and sell them to affluent collectors and the aforementioned naturalists. It was an ambitious idea, and John knew that his artistic capabilities were limited at best. Elizabeth was more than capable, equipped with valuable education in the arts from her youth. Though it seemed she was initially sceptical of the proposal, as she asked her husband who would transfer the plates to the stones. To this question, John replied, "Why you, of course!" [^7] and thus the couple’s first publication was born. - There are no records of Elizabeth’s qualification as a draughtswoman, but she would have most likely been familiar with sketches and watercolour paintings of common botany. Nonetheless, it was very different to drawing photographic representations of feathered animals. This, coupled with her first pregnancy, must have proven to be a taxing challenge. Despite the stress of her new roles as both a mother and draughtswoman, she still spent hours meticulously practising the art of lithography, as taught by a fellow collaborator, Edward Lear [^6]. Finally, after two years of strenuous hard work, her lavishly crafted plates were published in “_A Century of Birds from the Himalaya Mountains_” (1830-1832) accompanied by N. A. Vigors’ factful scientific explanations. Only days after the publication, Elizabeth gave birth to her first son, a baby boy by the name of John Henry. - “_A Century of Birds from the Himalaya Mountains_” was massively successful and highlighted Elizabeth’s attentive approach to the smallest of details, even when selecting the right pigments and brushes. The _Picus Brunifrons_ template is an excellent demonstration of the young woman’s talents, where she accurately replicated the finest details with only a single-haired brush [^4]. Shamefully, regardless of Elizabeth’s hours of intensive hard work, her name was notably absent from the title page. Her vigorous contributions were only briefly acknowledged in a short credit on the lower left of each plate - "Drawn from nature by E. Gould" - but none featured her signature. - Following the success of their first publication, the Gould couple immediately worked on a more ambitious collaboration in which they titled “_The Birds of Europe_” (1832-1837). This 448-plate publication required the couple to travel all over continental Europe and with each new expedition, Elizabeth’s artistic skills improved [^8]. In contrast to her previous work in “_Century_”, limited to drawing taxidermied specimens, for “_The Birds of Europe_”, Elizabeth could observe breathing, flying, animated birds. With her flourishing artistry, Elizabeth authentically captured the true colouring of their “soft parts” - eyes, neck wattles, skin - in which even the best taxidermy practices could not replicate. The authentic colouring, paired with her choices of more dynamic poses, allowed her designs to stand out from the sea of stiff poses that were favoured in this century. - For five exhausting years, Elizabeth dedicated hours upon hours to perfecting “_The Birds of Europe_”, but her role as a mother was not to be forgotten. During this time, she also gave birth to five more children, though only three survived infancy [^8]. Yet again, despite Elizabeth’s tireless efforts, her award came as a small credit in the lower corner of each plate. However, this time the credit not only bore Elizabeth’s initials but John’s as well. He credited his wife for the drawings and lithographs but attributed the "sketches and designs" to his labour. Contrastingly, multiple critics have suggested John did little more than make minor changes to or simply just approved Elizabeth’s sketches [^4]. It was also during this hectic time that a young Charles Darwin recognised Elizabeth’s creative gift and commissioned her to produce 50 lithographic plates for his publication, “_The Zoology of the Voyage of H.M.S. Beagle - Part III Birds_” [^6]. Again, Elizabeth’s name was absent from these plates. - Though the “_Century_” and “_Birds of Europe_” were impressive successes, the Goulds were most celebrated for their work in “_Birds of Australia_” (1840-1848). This 7-volume publication was composed of 681 specimens, of which 84 were painted by Elizabeth herself [^6]. Similar to her previous work in the “_Birds of Europe_”, to deliver the highest quality depictions of the foreign specimens to their subscribers, she had to embark on a long journey to Australia to study their organic forms. Subsequently, the couple and their eldest son took off to explore the vast land on the other side of the planet. During their stay in the foreign country, they lived on Elizabeth’s brothers’ farm which later became their base of operations [^1]. - This was perhaps Elizabeth’s most exciting period in her life with such an esteemed project in her hands, however, it may have also been her most distressing time. Correspondences in letters to her mother revealed that she was riddled with regrets when she left her home country. She sombrely documented her tough decision to leave her three youngest children - Charles, Eliza, and Louisa - back in England and concerns and worries constantly plagued her mind [^8]. Nevertheless, she had little time to entertain her doubts as she kept busy by preparing hundreds of sketches, drawings, and paintings of the colony’s native wildlife. The most recognised image she produced was that of the Fairy Wren. In her preliminary drawing for the lithographed plate, she confidently presented her signature technique of using soft and controlled pencil strokes to replicate the lifelike features of each specimen. Her attention to detail extended to her selection of watercolours for the pallet, ensuring that they would precisely represent Australia. - In 1840, John, Elizabeth and John Henry returned to familiar British soil with a new collection of exotic specimens and a fresh addition to the Gould family - baby Franklin - who was fondly named after Elizabeth's new friends, [Sir John](https://kent-maps.online/19c/19c-franklin-biography/) and Lady Jane Franklin [^1]. Even when reunited with the rest of her children after two long years of separation, Elizabeth could not abandon her work and spent her time carefully transferring her hand-crafted compositions onto stones. Tragically, she did not see the project to its completion as Elizabeth died on 15 August 1841 from a fatal contraction of puerperal fever, following the birth of her third daughter, Sarah, [^4] in Egham, Surrey [^1]. - Reportedly, John, devastated by the loss of his 37-year-old wife, memorialised her by naming two Australian birds in her honour - Mrs Gould’s Sunbird and the Gouldian Finch. He accompanied the commemoration with a thankful note, acknowledging Elizabeth’s utmost devotion to their family legacy [^9]. Ultimately, with the unfortunate premature death of his beloved wife, John would outsource a new upcoming artist by the name of Henry Richter to finish the rest of the book using Elizabeth’s remaining sketches and designs [^10]. - Elizabeth Gould was a woman of her time, raised to be a loving wife and doting mother, but that is not to discredit her for being an extraordinary artist who contributed many landmark pieces in Victorian ornithology. Though eclipsed by the glory of her husband’s name, it is important to note that she was not just a side character to John's famed story, but rather a remarkable woman in her own right. So, instead of painting her as an oppressed feminine figure of history, we should remember her as an artistically adept maid of Kent, a strong companion to her husband and a caring mother to her children. - # References From c98b97c39af5b9d1215e9b3e1dbde25c5198a85b Mon Sep 17 00:00:00 2001 From: Angela <100305555+angiethebutcher@users.noreply.github.com> Date: Wed, 2 Mar 2022 12:27:10 +0000 Subject: [PATCH 287/398] Update index.md I've added a couple of html links for linking the article about Elizabeth Gould to its visual article. Let me know if it works --- index.md | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/index.md b/index.md index 226b3989..1845b75b 100644 --- a/index.md +++ b/index.md @@ -2,6 +2,8 @@ + + # Kent Maps Online - Duke of Edinburgh award site This site showcases the work completed by our Duke of Edinburgh participants at all levels. Supported by student ambassadors from Canterbury Christ Church University, participants explore the extraordinary history of Kent and the people who have lived here, using words, images and innovative coding to bring their stories to life. @@ -14,12 +16,16 @@ This site showcases the work completed by our Duke of Edinburgh participants at ## Ancient Lavatory (Now and Then) -![](https://upload.wikimedia.org/wikipedia/commons/1/13/Canterbury_Cathedral_cloister2.JPG) + + +![](Ancient Lavatory) coords: 51.279811, 1.083001 eid: Q29265 The ancient lavatory at Canterbury Cathedral where the monks washed before and after eating. + + ## St Augustine's Abbey (Now and Then) @@ -68,10 +74,14 @@ The Dane John Mound is a Roman cemetery in Canterbury. ## Elizabeh Gould (Essay) -![](https://upload.wikimedia.org/wikipedia/commons/e/e5/Elizabeth_Gould.jpg) + + +![](Elizabeth Gould) coords: 51.2038, 1.2415 eid: Q736439 + + ## The House of Agnes (Now and Then) @@ -147,4 +157,3 @@ Yalding is situated six miles south west of Maidstone and was home to the poet E - From 3b2310a9a9e7cff7caff48c3e2f2915ba149a60d Mon Sep 17 00:00:00 2001 From: Angela <100305555+angiethebutcher@users.noreply.github.com> Date: Wed, 2 Mar 2022 12:31:18 +0000 Subject: [PATCH 288/398] Update index.md In this file, I removed the link in line 5 --- index.md | 1 - 1 file changed, 1 deletion(-) diff --git a/index.md b/index.md index 1845b75b..0ec78a48 100644 --- a/index.md +++ b/index.md @@ -2,7 +2,6 @@ - # Kent Maps Online - Duke of Edinburgh award site From 09f835166dc3d9aac5d1c21b3273cc2acd69eebd Mon Sep 17 00:00:00 2001 From: Angela <100305555+angiethebutcher@users.noreply.github.com> Date: Wed, 2 Mar 2022 12:50:36 +0000 Subject: [PATCH 289/398] Update index.md I removed the to the images and added an hypelink so the article can connect to the main page of the virtual essay --- index.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/index.md b/index.md index 0ec78a48..5020e644 100644 --- a/index.md +++ b/index.md @@ -15,15 +15,13 @@ This site showcases the work completed by our Duke of Edinburgh participants at ## Ancient Lavatory (Now and Then) - - -![](Ancient Lavatory) +![](https://upload.wikimedia.org/wikipedia/commons/1/13/Canterbury_Cathedral_cloister2.JPG) coords: 51.279811, 1.083001 eid: Q29265 The ancient lavatory at Canterbury Cathedral where the monks washed before and after eating. - + ## St Augustine's Abbey (Now and Then) @@ -75,7 +73,7 @@ The Dane John Mound is a Roman cemetery in Canterbury. -![](Elizabeth Gould) +![](https://upload.wikimedia.org/wikipedia/commons/e/e5/Elizabeth_Gould.jpg>) coords: 51.2038, 1.2415 eid: Q736439 From 0b9e60cfb37dff9eeb2101526a390226419fe085 Mon Sep 17 00:00:00 2001 From: Angela <100305555+angiethebutcher@users.noreply.github.com> Date: Wed, 2 Mar 2022 12:56:17 +0000 Subject: [PATCH 290/398] Update index.md I've removed a ">" from the section dedicated to Elizabeth Gould --- index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.md b/index.md index 5020e644..cb3bc655 100644 --- a/index.md +++ b/index.md @@ -73,7 +73,7 @@ The Dane John Mound is a Roman cemetery in Canterbury. -![](https://upload.wikimedia.org/wikipedia/commons/e/e5/Elizabeth_Gould.jpg>) +![](https://upload.wikimedia.org/wikipedia/commons/e/e5/Elizabeth_Gould.jpg) coords: 51.2038, 1.2415 eid: Q736439 From 0fde7e188c09fa91e32c6a4bdbc70990559c5722 Mon Sep 17 00:00:00 2001 From: Angela <100305555+angiethebutcher@users.noreply.github.com> Date: Wed, 2 Mar 2022 13:12:03 +0000 Subject: [PATCH 291/398] Create index.md From the viewer in github, in the preview section, the linkto the visual essay page works but the image of the article regarding Elizabeth Gould does not update automatically and it doesn't appear --- index.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.md b/index.md index cb3bc655..1ec267b4 100644 --- a/index.md +++ b/index.md @@ -74,11 +74,12 @@ The Dane John Mound is a Roman cemetery in Canterbury. ![](https://upload.wikimedia.org/wikipedia/commons/e/e5/Elizabeth_Gould.jpg) + coords: 51.2038, 1.2415 eid: Q736439 - + ## The House of Agnes (Now and Then) From 6d054b0a33fb23d6b3f3ec5da4bd842cb4e9b958 Mon Sep 17 00:00:00 2001 From: Angela <100305555+angiethebutcher@users.noreply.github.com> Date: Wed, 2 Mar 2022 13:19:31 +0000 Subject: [PATCH 292/398] Update index.md --- index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.md b/index.md index 1ec267b4..5fa4c37e 100644 --- a/index.md +++ b/index.md @@ -69,7 +69,7 @@ The Dane John Gardens were created on common land by Alderman James Simmons in 1 The Dane John Mound is a Roman cemetery in Canterbury. -## Elizabeh Gould (Essay) +## Elizabeth Gould (Essay) From f76acf5804cb74b074ab9c759ac570ef2a3eff52 Mon Sep 17 00:00:00 2001 From: Angela <100305555+angiethebutcher@users.noreply.github.com> Date: Wed, 2 Mar 2022 13:27:58 +0000 Subject: [PATCH 293/398] Update index.md Just fixed the problem with the image that didn't appear in the section dedicated to Elizabeth Gould --- index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.md b/index.md index 5fa4c37e..650434d7 100644 --- a/index.md +++ b/index.md @@ -73,7 +73,7 @@ The Dane John Mound is a Roman cemetery in Canterbury. -![](https://upload.wikimedia.org/wikipedia/commons/e/e5/Elizabeth_Gould.jpg) +![](Elizabeth Gould) coords: 51.2038, 1.2415 From 00e67c27ae67ea5abeb13ab46ad23cb327b01b67 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Wed, 2 Mar 2022 16:19:32 +0000 Subject: [PATCH 294/398] Update index.md --- index.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/index.md b/index.md index 650434d7..369bfb84 100644 --- a/index.md +++ b/index.md @@ -79,8 +79,6 @@ The Dane John Mound is a Roman cemetery in Canterbury. coords: 51.2038, 1.2415 eid: Q736439 - - ## The House of Agnes (Now and Then) coords: 51.2824, 1.07365 @@ -117,6 +115,13 @@ coords: 51.280058, 1.078325 The Old Weavers House is a half-timbered building on the River Stour at Canterbury. +## The Spanish Armada (Essay) + + + +![](Spanish Armada + + ## The Sun Hotel ![](https://upload.wikimedia.org/wikipedia/commons/d/d7/Sun_Hotel%2C_Canterbury_-_geograph.org.uk_-_2080589.jpg) From 54fdd219873bcb5c87bcd5790715cc3431a1a10a Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Wed, 2 Mar 2022 16:28:47 +0000 Subject: [PATCH 295/398] Create spanish-armada-essay.md --- pages/spanish-armada-essay.md | 76 +++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 pages/spanish-armada-essay.md diff --git a/pages/spanish-armada-essay.md b/pages/spanish-armada-essay.md new file mode 100644 index 00000000..dd698c7c --- /dev/null +++ b/pages/spanish-armada-essay.md @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + +# + +“I have placed my chiefest strength and safeguard in the loyal hearts and goodwill of my subjects, and therefore I am come amongst you, as you see, at this time, not for my recreation, but being resolved, in the midst and heat of the battle, to live or die amongst you all, to lay down for my God, and for my Kingdom and my People, my honour and my blood, even in the dust."[^ref1] +

    +These are the words spoken by Queen Elizabeth I at Tilbury to her assembled troops on the eve of an anticipated Spanish invasion on the 8th of August 1588. Determined to protect the nation against the advancing Spanish foe, the government had concentrated its forces near London, digging trenches along the Essex coast and barring the entrance to the Thames with a chain. + + +Meanwhile in Kent, the militia had been mobilised to protect the county from any possible invasion. Sir John Norris who was in charge of commanding the South East, mustered troops at Rochester, planning to concentrate his forces at Canterbury, whereas Sir Thomas Scott, former MP for Kent, wanted to spread out along the coast. [^ref2] There were fears that troops from Flanders might land either on the Downs or along the unprotected coast of Margate. Unlike the south Kent coast, which had benefitted from the fortifications built by Henry VIII at Sandgate, Walmer, Deal, and Sandown, the North Kent coast from Margate to the River Medway was vulnerable. [Sheppey](/16c/16c-sheppey-at-war) had been fortified earlier in the year but the castle at Upnor was the only fortification on the Medway and nearby Rochester Castle had fallen into disrepair.[^ref3] Some plans were made to strengthen the fort at Gravesend, as late as July 29th.[^ref4] + + + +In the autumn of 1587, Philip II of Spain had written to the Duke of Parma, the governor of the Netherlands, outlining his plans for the campaign: +

    +”The most important of all things is that you should be so completely ready that the moment the Marquis (of Santa Cruz) arrives at Margate, you may be able to do your share without delay. You will see the danger of any such delay; the Armada being there and you behindhand : as until your passage is effected he will have no harbour for shelter, whereas, when you have crossed over he will have the safe and spacious river Thames. Otherwise he will be at the mercy of the weather; and if, which God forbid! any misfortune should happen to him, you will understand what a state it will put us into.”[^ref5] +

    +Six thousand Spanish infantry were sent by ship to increase Parma's fighting power so that a surprise attack could be launched from the Netherlands.[^ref6] A series of events in the English Channel, however, foiled the Spanish plans to "join hands" off Margate.[^ref7] + + + +In the weeks leading up to the Spanish offensive, a series of beacons had been erected to act as a warning system along the southern coast. These were filled with tar and the first one lit as soon as the Spanish galleons were spotted off Cornwall; each town then played its part relaying the impending danger to London. Kent had a well-established system of beacons; and watches were arranged at Hoo, Sheppey, Graystones, Elmes, Dymchurch and Sandgate.[^ref8] As soon as the beacon was lit at Fairlight in Sussex, Kent would have received its warning. + + +On the 20th July 1588, the Spanish fleet sailed past Plymouth where they were bombarded by cannon fired from English ships under the command of Lord Howard of Effingham and Sir Francis Drake. Drake, who was second in command, was a privateer who had earned the nickname 'El Draque' - the dragon - for his raids on Spanish ships. He may have spent some time in Kent as a boy, as his father was a curate at Upchurch, although evidence suggests he largely remained in Devon with the Hawkins family.[^ref9] + + +After Plymouth, and with the English fleet in hot pursuit, the Spanish galleons headed on towards the Kent coast, but skirmishes at Portland and in the Solent, forced them to provision at Calais. At midnight on 28th July, the English unleashed eight ‘hellburners’- tar filled ships, which threatened to destroy the Spanish fleet, leading to chaos and confusion in the channel. Sir Thomas Scott wrote to Lord Burghley on the 5th of August informing him that the Armada had been seen off Boulogne. His letter was carried by horseman through the night, passing through Sittingbourne at 4 a.m. Thirty ensigns of infantry and three cornets of horse were assembled on the Downs "to make a shewe ... to the Enymye".[^ref10] +

    +Over the period of a day, Scott had assembled 4000 men at Dover paying for their services with his own money, however, on seeing the magnificent Spanish galleons massing in the channel, the callow and unprepared troops began to panic, many fleeing their positions.[^ref11] Scott commanded the camp at Northbourne but the commanding officers for Thanet, Edward Wotton and Sir Thomas Fane, were on duty elsewhere leaving the coast unprotected.[^ref12] + + + +The English attacked the Armada near Gravelines on the 8th of August, driving the Spanish galleons further up the coast and away from Kent, leaving the Spanish unable to rendezvous off Cape Margate. Instead, the town of Margate saw an influx of English sailors, who having contracted typhus after the battle of Gravelines, were left to die of disease and starvation.[^ref13] An ignoble and pitiful end for these brave fighters. The armies in Kent and Tilbury were gradually disbanded and Elizabeth I did not have to lie down among the blood and the dust of her people. +

    +This article was researched by Arnav, Charlie, Conrad, Hannah, Lewis, Max, Niamh and Polina whilst undertaking volunteering on the Kent Maps as part of their Duke of Edinburgh Award. It was collated and written up by Eloise Lewis and Michelle Crowther. + + + +### References + +[^ref1]: 'Tilbury Speech' in Damrosh, David, et al. _The Longman Anthology of British Literature, Volume 1B: The Early Modern Period._ 3rd ed. New York: Pearson Longman, 2006. +[^ref2]: Parker, G. 'If the Armada had landed.' _History_, vol. 61, no. 203, Wiley, 1976, pp. 358–68, http://www.jstor.org/stable/24409924. +[^ref3]: Ashbee, J. 'History of Rochester Castle’ English Heritage. +[^ref4]: National Maritime Museum. _Armada 1588-1988 : an international exhibition to commemorate the Spanish Armada; the official catalogue_ +[^ref5]: Calendar of State Papers, Spain (Simancas), Volume 4, 1587-1603. Originally published by Her Majesty's Stationery Office, London, 1899. Pages vii-lxviii. +[^ref6]: Jensen, De Lamar. 'The Spanish Armada: The Worst-Kept Secret in Europe.' _The Sixteenth Century Journal_, vol. 19, no. 4, _The Sixteenth Century Journal_, 1988, pp. 621–41, https://doi.org/10.2307/2540990. +[^ref7]: Calendar of State Papers, Spain (Simancas), Volume 4, 1587-1603. Originally published by Her Majesty's Stationery Office, London, 1899. Pages vii-lxviii. +[^ref8]: White, T.H. 'The beacon system in Kent,' _Archaeologia Cantiana_ 46, 1934; Mc Gurk, J.M. 'Armarda preparations in Kent and arrangements made after the defeat (1587-1589) _Archaeologia Cantiana_ 85, 1977. +[^ref9]: 'Sir Francis Drake' _Oxford Dictionary of National Biography_. +[^ref9]: Parker, G. 'If the Armada had landed.' _History_, vol. 61, no. 203, Wiley, 1976, pp. 358–68, http://www.jstor.org/stable/24409924. +[^ref10]: National Maritime Museum. _Armada 1588-1988 : an international exhibition to commemorate the Spanish Armada ; the official catalogue_ +[^ref11]: Younger, Neil. “If the Armada Had Landed: A Reappraisal of England’s Defences in 1588.” _History_, vol. 93, no. 3 (311), Wiley, 2008, pp. 328–54, http://www.jstor.org/stable/24428393. +[^ref12]: Letter from Sir Thomas Scott to Burghley, 5 August 1588. +[^ref13]: John Guy. _Elizabeth: The Forgotten Years._ Penguin Books Limited, 2016. + From 2a13fda8e43697d4dc23d5d7051644bf19b65631 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Wed, 2 Mar 2022 16:29:49 +0000 Subject: [PATCH 296/398] Rename spanish-armada-essay.md to the-spanish-armada-essay.md --- pages/{spanish-armada-essay.md => the-spanish-armada-essay.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename pages/{spanish-armada-essay.md => the-spanish-armada-essay.md} (100%) diff --git a/pages/spanish-armada-essay.md b/pages/the-spanish-armada-essay.md similarity index 100% rename from pages/spanish-armada-essay.md rename to pages/the-spanish-armada-essay.md From dafcf2c259c9570c36977bdaa788a77f5de1610a Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Wed, 2 Mar 2022 16:31:26 +0000 Subject: [PATCH 297/398] Update elizabeth-gould-essay.md --- pages/elizabeth-gould-essay.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pages/elizabeth-gould-essay.md b/pages/elizabeth-gould-essay.md index de04c8b1..a564ce1a 100644 --- a/pages/elizabeth-gould-essay.md +++ b/pages/elizabeth-gould-essay.md @@ -1,5 +1,7 @@ ## Elizabeth Gould +Article written by Carina Chan, Gold Participant. + On the 18th of July in 1804, in the seaside town of Ramsgate, Mr Nicholas Coxen and Elizabeth Coxen (nee Tomkins) welcomed a baby girl into the world. She was one of the couple’s many children, though sadly only she and three brothers survived their childhood. Though information regarding the early life of the Coxen children is sparse, they were "firmly middle class" through "links to the military" and we can imagine that she lived a typical life fitting for the era [^1].The sons pursued careers as scientists or military personnel, whilst Elizabeth studied subjects that were typical for women of her class and age, including languages, music, and art [^2]. In spite of her relatively ordinary upbringing, she would exceed expectations and become a wonderfully skilful artist. She will contribute invaluably to the world of ornithology with her talents and inspire the next generation of ornithologists. She will be Elizabeth Gould. Some may find the family name “Gould” familiar, especially in ornithological circles, with association to titles such as “The Birdman” or “The Father of Australian Ornithology” who published some of the most famous ornithologic books of the 19th century [^3]. Most would remember the accomplished man as John Gould. He left a remarkable legacy of beautifully illustrated documentation of various animals across the globe. Yet, he was not the sole creditor for his prodigious work. He had the help of a talented partner, his wife Elizabeth, who supported and worked alongside him throughout his career. From 2bb561e478a7c7e0b7e30f56e753c5172c029a49 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Wed, 2 Mar 2022 16:33:42 +0000 Subject: [PATCH 298/398] Update the-spanish-armada-essay.md --- pages/the-spanish-armada-essay.md | 24 ++---------------------- 1 file changed, 2 insertions(+), 22 deletions(-) diff --git a/pages/the-spanish-armada-essay.md b/pages/the-spanish-armada-essay.md index dd698c7c..be35ce8e 100644 --- a/pages/the-spanish-armada-essay.md +++ b/pages/the-spanish-armada-essay.md @@ -1,26 +1,6 @@ - - +## The Spanish Armada - - - - - - - - - - - - - - - - - - - -# +This article was researched by Arnav, Charlie, Conrad, Hannah, Lewis, Max, Niamh and Polina whilst undertaking volunteering on the Kent Maps as part of their Duke of Edinburgh Award. It was collated and written up by Eloise Lewis and Michelle Crowther. “I have placed my chiefest strength and safeguard in the loyal hearts and goodwill of my subjects, and therefore I am come amongst you, as you see, at this time, not for my recreation, but being resolved, in the midst and heat of the battle, to live or die amongst you all, to lay down for my God, and for my Kingdom and my People, my honour and my blood, even in the dust."[^ref1]

    From 8fc7d485a31616e73c497d4c18ca4720002bffa8 Mon Sep 17 00:00:00 2001 From: DigiHum1 <64199349+DigiHum1@users.noreply.github.com> Date: Wed, 2 Mar 2022 16:50:39 +0000 Subject: [PATCH 299/398] Create the-spanish-armada.md --- articles/the-spanish-armada.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 articles/the-spanish-armada.md diff --git a/articles/the-spanish-armada.md b/articles/the-spanish-armada.md new file mode 100644 index 00000000..bf025521 --- /dev/null +++ b/articles/the-spanish-armada.md @@ -0,0 +1 @@ +With invasion threatening, Kent mobilised its forces, but did it leave the coastal town of Margate unprotected? From bcc666e386ccf3e7e310ebf4030929c3ce6aa8ec Mon Sep 17 00:00:00 2001 From: Ron Snyder Date: Thu, 19 May 2022 18:49:59 -0400 Subject: [PATCH 300/398] Use new compare viewer --- README.md | 163 +- custom/Cards.vue | 26 + custom/components/Articles.vue | 4 +- custom/components/Cards.vue | 4 +- custom/components/Home.vue | 20 +- custom/components/NowAndThen.vue | 120 +- index.html | 1734 -------------------- pages/canterbury-cathedral-now-and-then.md | 6 +- 8 files changed, 222 insertions(+), 1855 deletions(-) create mode 100644 custom/Cards.vue delete mode 100644 index.html diff --git a/README.md b/README.md index 4c8c2163..369bfb84 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,162 @@ -# Welcome to Juncture + + + + + +# Kent Maps Online - Duke of Edinburgh award site + +This site showcases the work completed by our Duke of Edinburgh participants at all levels. Supported by student ambassadors from Canterbury Christ Church University, participants explore the extraordinary history of Kent and the people who have lived here, using words, images and innovative coding to bring their stories to life. + +## +[**How to use this site**](/howto) + +# + + +## Ancient Lavatory (Now and Then) + +![](https://upload.wikimedia.org/wikipedia/commons/1/13/Canterbury_Cathedral_cloister2.JPG) + + coords: 51.279811, 1.083001 + eid: Q29265 + +The ancient lavatory at Canterbury Cathedral where the monks washed before and after eating. + + + +## St Augustine's Abbey (Now and Then) + +![](https://upload.wikimedia.org/wikipedia/commons/thumb/6/60/Augustine_Abbey.jpg/320px-Augustine_Abbey.jpg) + + coords: 51.278128, 1.088206 + eid: Q334303 + +St Augustine's Abbey was a Benedictine monastery in Canterbury, Kent, England. The abbey was founded in 598 and functioned as a monastery until its dissolution in 1538 during the English Reformation. After the abbey's dissolution, it underwent dismantlement until 1848. Since 1848, part of the site has been used for educational purposes and the abbey ruins have been preserved for their historical value. + +## Canterbury High Street (Now and Then) + +![](https://upload.wikimedia.org/wikipedia/commons/1/1a/High_Street%2C_Canterbury%2C_Kent.jpg) + + coords: 51.278333, 1.0775 + eid: Q29303 + +The first Archbishop of Canterbury, Augustine, arrived in Kent as a missionary in 597AD. The ruins of St Augustine’s Abbey are still open to visitors, on the edge of the modern city. Augustine’s original cathedral is beneath the Nave of the building we know today and in which a later Archbishop, Thomas Becket, was murdered in 1170. + +## Canterbury Cathedral (Now and Then) + +![](https://upload.wikimedia.org/wikipedia/commons/e/eb/Canterbury_cathedral_20160901.jpg) + + coords: 51.279811, 1.083001 + eid: Q29265 + +Founded in 597, the cathedral is the oldest Christian structure in England. + +## Dane John Gardens (Now and Then) + + coords: 51.2753, 1.07818 + eid: Q17647042 + +![](https://upload.wikimedia.org/wikipedia/commons/4/41/Dane_John_gardens_-_geograph.org.uk_-_746465.jpg) + +The Dane John Gardens were created on common land by Alderman James Simmons in 1790. + +## Dane John Mound (Now and Then) + +![](https://upload.wikimedia.org/wikipedia/commons/f/f5/Dane_John_mound_-_geograph.org.uk_-_2277327.jpg) + + coords: 51.2753, 1.07818 + eid: Q17647042 + +The Dane John Mound is a Roman cemetery in Canterbury. + +## Elizabeth Gould (Essay) + + + +![](Elizabeth Gould) + + + coords: 51.2038, 1.2415 + eid: Q736439 + +## The House of Agnes (Now and Then) + + coords: 51.2824, 1.07365 + eid: Q17557200 + +![](https://upload.wikimedia.org/wikipedia/commons/e/e1/Canterbury_-_House_of_Agnes.jpg) + +The House of Agnes is a half-timbered medieval coaching inn in the St Dunstans area of Canterbury dating from the 13th century. It takes its name from the character Agnes Wickfield, in Charles Dicken's David Copperfield. + + +## The Christchurch Gateway (Now and Then) + +![](https://upload.wikimedia.org/wikipedia/commons/0/00/Christchurch_Gateway_Canterbury_1_%284902073359%29.jpg) + + coords: 51.279303, 1.081117 + eid: Q64145150 + +Christchurch Gateway, Canterbury Cathedral, built in 1517. + +## St Martin's Church (Now and Then) + +![](https://upload.wikimedia.org/wikipedia/commons/3/38/St_Martin%27s_Church_-_panoramio_-_Jean_Marc_Gfp_%283%29.jpg) + + coords: 51.277876, 1.092997 + eid: Q840462 + +St Martin's was the private chapel of Queen Bertha of Kent. + +## The Old Weavers House (Now and Then) + +![](https://upload.wikimedia.org/wikipedia/commons/7/7d/Weaver%27s_House%2C_Canterbury_JC_07.JPG) + +coords: 51.280058, 1.078325 + +The Old Weavers House is a half-timbered building on the River Stour at Canterbury. + +## The Spanish Armada (Essay) + + + +![](Spanish Armada + + +## The Sun Hotel + +![](https://upload.wikimedia.org/wikipedia/commons/d/d7/Sun_Hotel%2C_Canterbury_-_geograph.org.uk_-_2080589.jpg) + + coords: 51.279763, 1.08071 + eid: Q26535422 + +Built in 1503, The Sun Hotel formerly known as The Little Inn was made famous by Charles Dickens in his travels through Kent. + +## Umble Ome of Uriah Heep (Now and Then) + +![](https://upload.wikimedia.org/wikipedia/commons/8/87/Uriah_Heep_from_David_Copperfield_art_by_Frank_Reynolds.jpg) + + coords: 51.276272, 1.087550 + +Umble Ome of Uriah Heep is the house belonging to a fictional character in the novel David Copperfield, written by Charles Dickens in 1850. + +## Westgate Towers (Now and Then) + +![](https://upload.wikimedia.org/wikipedia/commons/1/10/Westgate_Towers%2C_Canterbury.jpg) + + coords: 51.2814, 1.07583 + eid: Q104815065 + +Built c.1379, the Westgate Towers are the last surviving gatehouse in Canterbury. + +## Edmund Blunden in Yalding (Essay) + +![](https://upload.wikimedia.org/wikipedia/commons/f/f8/Town_Bridge%2C_Yalding%2C_Kent_-_geograph.org.uk_-_1907735.jpg) + + coords: 51.224131, 0.429715 + +Yalding is situated six miles south west of Maidstone and was home to the poet Edmund Blunden. + + - **Juncture** is a free-to-use, open source framework for converting simple text files into an engaging visual essay. A visual essay is an interactive and responsive web page that augments a text narrative with visual elements to provide depth and context. -With Juncture you can create a single essay or build a full website consisting of multiple visual essays with navigation, site info pages, contact form, logo, and other simple customizations. -More information can be found on the [Juncture web site](https://juncture-digital.org) and in the online [User guide](https://github.com/JSTOR-Labs/juncture/wiki). diff --git a/custom/Cards.vue b/custom/Cards.vue new file mode 100644 index 00000000..e10a8a22 --- /dev/null +++ b/custom/Cards.vue @@ -0,0 +1,26 @@ + + + + + \ No newline at end of file diff --git a/custom/components/Articles.vue b/custom/components/Articles.vue index 19c191cd..0ab68a5a 100644 --- a/custom/components/Articles.vue +++ b/custom/components/Articles.vue @@ -34,7 +34,7 @@

    @@ -61,7 +61,7 @@ - - - -
    - -
    - - - -
    -
    - -
    - -
    - - -
    - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - diff --git a/pages/canterbury-cathedral-now-and-then.md b/pages/canterbury-cathedral-now-and-then.md index e383d040..85141ce3 100644 --- a/pages/canterbury-cathedral-now-and-then.md +++ b/pages/canterbury-cathedral-now-and-then.md @@ -1,9 +1,7 @@ - - - - + + # Canterbury Cathedral From 30830cc2254e38661ed324671b6a3e5da9d510d3 Mon Sep 17 00:00:00 2001 From: Ron Snyder Date: Thu, 19 May 2022 18:58:46 -0400 Subject: [PATCH 301/398] Use new compare viewer --- README.md | 163 ++++++++++++++++++++- custom/Cards.vue | 26 ++++ custom/components/Articles.vue | 4 +- custom/components/Cards.vue | 4 +- custom/components/Home.vue | 20 ++- custom/components/NowAndThen.vue | 120 +++------------ index.md | 162 -------------------- pages/canterbury-cathedral-now-and-then.md | 6 +- 8 files changed, 222 insertions(+), 283 deletions(-) create mode 100644 custom/Cards.vue delete mode 100644 index.md diff --git a/README.md b/README.md index 4c8c2163..369bfb84 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,162 @@ -# Welcome to Juncture + + + + + +# Kent Maps Online - Duke of Edinburgh award site + +This site showcases the work completed by our Duke of Edinburgh participants at all levels. Supported by student ambassadors from Canterbury Christ Church University, participants explore the extraordinary history of Kent and the people who have lived here, using words, images and innovative coding to bring their stories to life. + +## +[**How to use this site**](/howto) + +# + + +## Ancient Lavatory (Now and Then) + +![](https://upload.wikimedia.org/wikipedia/commons/1/13/Canterbury_Cathedral_cloister2.JPG) + + coords: 51.279811, 1.083001 + eid: Q29265 + +The ancient lavatory at Canterbury Cathedral where the monks washed before and after eating. + + + +## St Augustine's Abbey (Now and Then) + +![](https://upload.wikimedia.org/wikipedia/commons/thumb/6/60/Augustine_Abbey.jpg/320px-Augustine_Abbey.jpg) + + coords: 51.278128, 1.088206 + eid: Q334303 + +St Augustine's Abbey was a Benedictine monastery in Canterbury, Kent, England. The abbey was founded in 598 and functioned as a monastery until its dissolution in 1538 during the English Reformation. After the abbey's dissolution, it underwent dismantlement until 1848. Since 1848, part of the site has been used for educational purposes and the abbey ruins have been preserved for their historical value. + +## Canterbury High Street (Now and Then) + +![](https://upload.wikimedia.org/wikipedia/commons/1/1a/High_Street%2C_Canterbury%2C_Kent.jpg) + + coords: 51.278333, 1.0775 + eid: Q29303 + +The first Archbishop of Canterbury, Augustine, arrived in Kent as a missionary in 597AD. The ruins of St Augustine’s Abbey are still open to visitors, on the edge of the modern city. Augustine’s original cathedral is beneath the Nave of the building we know today and in which a later Archbishop, Thomas Becket, was murdered in 1170. + +## Canterbury Cathedral (Now and Then) + +![](https://upload.wikimedia.org/wikipedia/commons/e/eb/Canterbury_cathedral_20160901.jpg) + + coords: 51.279811, 1.083001 + eid: Q29265 + +Founded in 597, the cathedral is the oldest Christian structure in England. + +## Dane John Gardens (Now and Then) + + coords: 51.2753, 1.07818 + eid: Q17647042 + +![](https://upload.wikimedia.org/wikipedia/commons/4/41/Dane_John_gardens_-_geograph.org.uk_-_746465.jpg) + +The Dane John Gardens were created on common land by Alderman James Simmons in 1790. + +## Dane John Mound (Now and Then) + +![](https://upload.wikimedia.org/wikipedia/commons/f/f5/Dane_John_mound_-_geograph.org.uk_-_2277327.jpg) + + coords: 51.2753, 1.07818 + eid: Q17647042 + +The Dane John Mound is a Roman cemetery in Canterbury. + +## Elizabeth Gould (Essay) + + + +![](Elizabeth Gould) + + + coords: 51.2038, 1.2415 + eid: Q736439 + +## The House of Agnes (Now and Then) + + coords: 51.2824, 1.07365 + eid: Q17557200 + +![](https://upload.wikimedia.org/wikipedia/commons/e/e1/Canterbury_-_House_of_Agnes.jpg) + +The House of Agnes is a half-timbered medieval coaching inn in the St Dunstans area of Canterbury dating from the 13th century. It takes its name from the character Agnes Wickfield, in Charles Dicken's David Copperfield. + + +## The Christchurch Gateway (Now and Then) + +![](https://upload.wikimedia.org/wikipedia/commons/0/00/Christchurch_Gateway_Canterbury_1_%284902073359%29.jpg) + + coords: 51.279303, 1.081117 + eid: Q64145150 + +Christchurch Gateway, Canterbury Cathedral, built in 1517. + +## St Martin's Church (Now and Then) + +![](https://upload.wikimedia.org/wikipedia/commons/3/38/St_Martin%27s_Church_-_panoramio_-_Jean_Marc_Gfp_%283%29.jpg) + + coords: 51.277876, 1.092997 + eid: Q840462 + +St Martin's was the private chapel of Queen Bertha of Kent. + +## The Old Weavers House (Now and Then) + +![](https://upload.wikimedia.org/wikipedia/commons/7/7d/Weaver%27s_House%2C_Canterbury_JC_07.JPG) + +coords: 51.280058, 1.078325 + +The Old Weavers House is a half-timbered building on the River Stour at Canterbury. + +## The Spanish Armada (Essay) + + + +![](Spanish Armada + + +## The Sun Hotel + +![](https://upload.wikimedia.org/wikipedia/commons/d/d7/Sun_Hotel%2C_Canterbury_-_geograph.org.uk_-_2080589.jpg) + + coords: 51.279763, 1.08071 + eid: Q26535422 + +Built in 1503, The Sun Hotel formerly known as The Little Inn was made famous by Charles Dickens in his travels through Kent. + +## Umble Ome of Uriah Heep (Now and Then) + +![](https://upload.wikimedia.org/wikipedia/commons/8/87/Uriah_Heep_from_David_Copperfield_art_by_Frank_Reynolds.jpg) + + coords: 51.276272, 1.087550 + +Umble Ome of Uriah Heep is the house belonging to a fictional character in the novel David Copperfield, written by Charles Dickens in 1850. + +## Westgate Towers (Now and Then) + +![](https://upload.wikimedia.org/wikipedia/commons/1/10/Westgate_Towers%2C_Canterbury.jpg) + + coords: 51.2814, 1.07583 + eid: Q104815065 + +Built c.1379, the Westgate Towers are the last surviving gatehouse in Canterbury. + +## Edmund Blunden in Yalding (Essay) + +![](https://upload.wikimedia.org/wikipedia/commons/f/f8/Town_Bridge%2C_Yalding%2C_Kent_-_geograph.org.uk_-_1907735.jpg) + + coords: 51.224131, 0.429715 + +Yalding is situated six miles south west of Maidstone and was home to the poet Edmund Blunden. + + - **Juncture** is a free-to-use, open source framework for converting simple text files into an engaging visual essay. A visual essay is an interactive and responsive web page that augments a text narrative with visual elements to provide depth and context. -With Juncture you can create a single essay or build a full website consisting of multiple visual essays with navigation, site info pages, contact form, logo, and other simple customizations. -More information can be found on the [Juncture web site](https://juncture-digital.org) and in the online [User guide](https://github.com/JSTOR-Labs/juncture/wiki). diff --git a/custom/Cards.vue b/custom/Cards.vue new file mode 100644 index 00000000..e10a8a22 --- /dev/null +++ b/custom/Cards.vue @@ -0,0 +1,26 @@ + + + + + \ No newline at end of file diff --git a/custom/components/Articles.vue b/custom/components/Articles.vue index 19c191cd..0ab68a5a 100644 --- a/custom/components/Articles.vue +++ b/custom/components/Articles.vue @@ -34,7 +34,7 @@

    @@ -61,7 +61,7 @@ - - diff --git a/components/SimpleEssay.vue b/components/SimpleEssay.vue new file mode 100644 index 00000000..c30112bd --- /dev/null +++ b/components/SimpleEssay.vue @@ -0,0 +1,50 @@ + + + + + From f93921e54a66a0f6e39668925559ce4dae833f04 Mon Sep 17 00:00:00 2001 From: Ron Snyder Date: Fri, 20 May 2022 08:45:36 -0400 Subject: [PATCH 308/398] Update ancient-lavatory-now-and-then.md --- pages/ancient-lavatory-now-and-then.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/ancient-lavatory-now-and-then.md b/pages/ancient-lavatory-now-and-then.md index 9850883b..c7c13c97 100644 --- a/pages/ancient-lavatory-now-and-then.md +++ b/pages/ancient-lavatory-now-and-then.md @@ -2,8 +2,8 @@ - - + + # Ancient Lavatory From 52e0fc058984d46cf404b3484358e11c1520e17a Mon Sep 17 00:00:00 2001 From: Angela <100305555+angiethebutcher@users.noreply.github.com> Date: Fri, 20 May 2022 15:51:35 +0100 Subject: [PATCH 309/398] Update dane-john-gardens-now-and-then.md --- pages/dane-john-gardens-now-and-then.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/dane-john-gardens-now-and-then.md b/pages/dane-john-gardens-now-and-then.md index d0663431..2bc7365b 100644 --- a/pages/dane-john-gardens-now-and-then.md +++ b/pages/dane-john-gardens-now-and-then.md @@ -2,8 +2,8 @@ - - + + # Dane John Gardens From fed3487979257b125c05f996b17be8142597b69b Mon Sep 17 00:00:00 2001 From: Angela <100305555+angiethebutcher@users.noreply.github.com> Date: Fri, 20 May 2022 16:39:18 +0100 Subject: [PATCH 310/398] Update ancient-lavatory-now-and-then.md --- pages/ancient-lavatory-now-and-then.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/ancient-lavatory-now-and-then.md b/pages/ancient-lavatory-now-and-then.md index c7c13c97..f87c4da2 100644 --- a/pages/ancient-lavatory-now-and-then.md +++ b/pages/ancient-lavatory-now-and-then.md @@ -2,8 +2,8 @@ - - + + # Ancient Lavatory From 9040d88ea919def33be8f8f5aa185c1f5ee808be Mon Sep 17 00:00:00 2001 From: Angela <100305555+angiethebutcher@users.noreply.github.com> Date: Mon, 23 May 2022 09:31:56 +0100 Subject: [PATCH 311/398] Update canterbury-high-street-now-and-then.md --- pages/canterbury-high-street-now-and-then.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/canterbury-high-street-now-and-then.md b/pages/canterbury-high-street-now-and-then.md index 5f4b027e..15a980f2 100644 --- a/pages/canterbury-high-street-now-and-then.md +++ b/pages/canterbury-high-street-now-and-then.md @@ -2,8 +2,8 @@ - - + + # Canterbury High Street From 7d69f91d6ba33e26a75f34bf3a120cadae5da790 Mon Sep 17 00:00:00 2001 From: Angela <100305555+angiethebutcher@users.noreply.github.com> Date: Mon, 23 May 2022 09:47:38 +0100 Subject: [PATCH 312/398] Update st-augustines-abbey-now-and-then.md --- pages/st-augustines-abbey-now-and-then.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/st-augustines-abbey-now-and-then.md b/pages/st-augustines-abbey-now-and-then.md index 9868d25e..3d008b43 100644 --- a/pages/st-augustines-abbey-now-and-then.md +++ b/pages/st-augustines-abbey-now-and-then.md @@ -2,8 +2,8 @@ - - + + # St Augustine's Abbey From 469710e39117af66d95248faf31aa49c9661d739 Mon Sep 17 00:00:00 2001 From: Angela <100305555+angiethebutcher@users.noreply.github.com> Date: Mon, 23 May 2022 10:25:17 +0100 Subject: [PATCH 313/398] Update st-martins-church-now-and-then.md --- pages/st-martins-church-now-and-then.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/st-martins-church-now-and-then.md b/pages/st-martins-church-now-and-then.md index 6dfb6fe9..6e105774 100644 --- a/pages/st-martins-church-now-and-then.md +++ b/pages/st-martins-church-now-and-then.md @@ -2,8 +2,8 @@ - - + + # St Martin's Church From c90272ac62c730b1a8a6b5f670ba58dda134bdd8 Mon Sep 17 00:00:00 2001 From: Angela <100305555+angiethebutcher@users.noreply.github.com> Date: Tue, 24 May 2022 14:50:32 +0100 Subject: [PATCH 314/398] Update the-old-weavers-house-now-and-then.md --- pages/the-old-weavers-house-now-and-then.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/the-old-weavers-house-now-and-then.md b/pages/the-old-weavers-house-now-and-then.md index f5b4ab60..8dfd8ba1 100644 --- a/pages/the-old-weavers-house-now-and-then.md +++ b/pages/the-old-weavers-house-now-and-then.md @@ -2,8 +2,8 @@ - - + + # The Old Weavers House From a5c9da1e037177bf0575a9ee43bd1db1fc2c5592 Mon Sep 17 00:00:00 2001 From: Angela <100305555+angiethebutcher@users.noreply.github.com> Date: Tue, 24 May 2022 15:53:57 +0100 Subject: [PATCH 315/398] Update the-sun-hotel-now-and-then.md --- pages/the-sun-hotel-now-and-then.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/the-sun-hotel-now-and-then.md b/pages/the-sun-hotel-now-and-then.md index f4509cfd..45b96d0c 100644 --- a/pages/the-sun-hotel-now-and-then.md +++ b/pages/the-sun-hotel-now-and-then.md @@ -2,8 +2,8 @@ - - + + # The Sun Hotel From 97aa61063430e0f09ce1ba9dbfa2beac301b9377 Mon Sep 17 00:00:00 2001 From: Angela <100305555+angiethebutcher@users.noreply.github.com> Date: Tue, 24 May 2022 16:17:00 +0100 Subject: [PATCH 316/398] Update umble-ome-of-uriah-heep-now-and-then.md --- pages/umble-ome-of-uriah-heep-now-and-then.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/umble-ome-of-uriah-heep-now-and-then.md b/pages/umble-ome-of-uriah-heep-now-and-then.md index 9f237aad..55b6a568 100644 --- a/pages/umble-ome-of-uriah-heep-now-and-then.md +++ b/pages/umble-ome-of-uriah-heep-now-and-then.md @@ -2,8 +2,8 @@ - - + + # Umble Ome of Uriah Heep From 22c24f03ddad3b3b6b2f49cb24a81c831cb590bc Mon Sep 17 00:00:00 2001 From: Angela <100305555+angiethebutcher@users.noreply.github.com> Date: Tue, 24 May 2022 17:55:15 +0100 Subject: [PATCH 317/398] Update the-house-of-agnes-now-and-then.md The yaml file "Canterbury_High_Street" contains the images of The House of Agnes --- pages/the-house-of-agnes-now-and-then.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/the-house-of-agnes-now-and-then.md b/pages/the-house-of-agnes-now-and-then.md index 371bbf4e..3792076a 100644 --- a/pages/the-house-of-agnes-now-and-then.md +++ b/pages/the-house-of-agnes-now-and-then.md @@ -2,8 +2,8 @@ - - + + # House of Agnes From 364ba9b5fd8ba53263e61d1c4a92edc815e8bc62 Mon Sep 17 00:00:00 2001 From: Angela <100305555+angiethebutcher@users.noreply.github.com> Date: Wed, 25 May 2022 10:09:47 +0100 Subject: [PATCH 318/398] Update the-house-of-agnes-now-and-then.md --- pages/the-house-of-agnes-now-and-then.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/the-house-of-agnes-now-and-then.md b/pages/the-house-of-agnes-now-and-then.md index 3792076a..f9c84eef 100644 --- a/pages/the-house-of-agnes-now-and-then.md +++ b/pages/the-house-of-agnes-now-and-then.md @@ -2,8 +2,8 @@ - - + + # House of Agnes From 729b3df6aef8ef706da1a70866629e8b5f693b29 Mon Sep 17 00:00:00 2001 From: Angela <100305555+angiethebutcher@users.noreply.github.com> Date: Wed, 25 May 2022 10:44:19 +0100 Subject: [PATCH 319/398] Update canterbury-high-street-now-and-then.md --- pages/canterbury-high-street-now-and-then.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/canterbury-high-street-now-and-then.md b/pages/canterbury-high-street-now-and-then.md index 15a980f2..f64f2ae3 100644 --- a/pages/canterbury-high-street-now-and-then.md +++ b/pages/canterbury-high-street-now-and-then.md @@ -2,8 +2,8 @@ - - + + # Canterbury High Street From a91b262cfa4be521ec0977910a822b96d7b4b6db Mon Sep 17 00:00:00 2001 From: Angela <100305555+angiethebutcher@users.noreply.github.com> Date: Wed, 25 May 2022 10:46:13 +0100 Subject: [PATCH 320/398] Update canterbury-high-street-now-and-then.md --- pages/canterbury-high-street-now-and-then.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/canterbury-high-street-now-and-then.md b/pages/canterbury-high-street-now-and-then.md index f64f2ae3..e6b00bcd 100644 --- a/pages/canterbury-high-street-now-and-then.md +++ b/pages/canterbury-high-street-now-and-then.md @@ -3,7 +3,7 @@ - + # Canterbury High Street From d552663979747ba294acb66839470f5e5c118ab1 Mon Sep 17 00:00:00 2001 From: Angela <100305555+angiethebutcher@users.noreply.github.com> Date: Wed, 25 May 2022 11:51:20 +0100 Subject: [PATCH 321/398] Update dane-john-mound-now-and-then.md --- pages/dane-john-mound-now-and-then.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/dane-john-mound-now-and-then.md b/pages/dane-john-mound-now-and-then.md index 0de48dee..84c1060f 100644 --- a/pages/dane-john-mound-now-and-then.md +++ b/pages/dane-john-mound-now-and-then.md @@ -3,8 +3,8 @@ - - + + # Dane John Mound From 50c0ef2ca2f6a5219ec2ad2b1b3c872a47994038 Mon Sep 17 00:00:00 2001 From: Ron Snyder Date: Wed, 25 May 2022 11:04:34 -0400 Subject: [PATCH 322/398] compare viewer styling --- custom/components/NowAndThen.vue | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/custom/components/NowAndThen.vue b/custom/components/NowAndThen.vue index 561a728a..d89efeb4 100644 --- a/custom/components/NowAndThen.vue +++ b/custom/components/NowAndThen.vue @@ -6,11 +6,13 @@

    {{ mode_description }}

    - -
      -
    • {{image.manifest || image.src}}{{image.region ? ' '+image.region : ''}}
    • -
    -
    +
    + +
      +
    • {{image.manifest || image.src}}{{image.region ? ' '+image.region : ''}}
    • +
    +
    +
    From d9d654f5e8a67d0d2ac013a56ab00342368c0704 Mon Sep 17 00:00:00 2001 From: Ron Snyder Date: Wed, 25 May 2022 11:07:10 -0400 Subject: [PATCH 323/398] Styling tweaks --- custom/components/NowAndThen.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom/components/NowAndThen.vue b/custom/components/NowAndThen.vue index d89efeb4..6866aefd 100644 --- a/custom/components/NowAndThen.vue +++ b/custom/components/NowAndThen.vue @@ -6,7 +6,7 @@

    {{ mode_description }}

    -
    +