Ralph Hale Mottram

Ralph Hale Mottram (30 October 1883 – 16 April 1971) was an English writer. He was well known as a novelist, particularly for the Spanish Farm trilogy,[1] and as a war poet of World War I.

Upbringing

Mottram's father was the chief clerk of Gurney's Bank in Norwich. He had an idyllic childhood growing up in Bank House – a magnificent George II mansion on Bank Plain – which was later Barclay's Bank and is now a youth centre. The Mottrams were non-conformist and worshipped at the Octagon Chapel, Norwich in Colegate.[2]

Career

Mottram went from being a bank clerk in Norwich before the war to becoming lord mayor there in 1953. The Spanish Farm won the 1924 Hawthornden Prize. He also wrote a biography of John Galsworthy. As a conservationist, he was a defender of Mousehold Heath,[2] a large open space in the heart of Norwich. On St James' Hill, there is a sculpture dedicated to him, which depicts the skyline of Norwich.[2]

Burial

Mottram is buried in the non-denominational Rosary Cemetery, Norwich.[1][2] Being a non-member of the established Church of England, Mottram once said, "I knew, when I was four years old, exactly where I could be buried."

Works

  • Repose and other verses (1907), as J. Marjoram[3]
  • New Poems (1909), as J. Marjoram
  • The Spanish Farm (1924), a trilogy with Sixty-Four, Ninety-Four and The Crime at Vanderlynden's
  • Sixty-Four, Ninety-Four (1925)
  • The Crime at Vanderlynden's (1926)
  • Our Mr. Dormer (1927), a trilogy with The Boroughmonger and Castle Island
  • The Apple Disdained (1928)
  • Ten Years Ago. Armistice and other memories (1928)
  • The English Miss (1938)
  • A History of Financial Speculation (1929)
  • The Boroughmonger (1929)
  • A Rich Man's Daughter (1930)
  • Europa's Beast (1930)
  • The New Providence (1930)
  • Poems Old and New (1930)
  • Three Men's War (1930), with John Easton and Eric Partridge
  • The Lost Christmas Presents (1931)
  • Castle Island (1931)
  • John Crome of Norwich (1931)
  • The Headless Hound and other stories (1931)
  • Through the Menin Gate (1932)
  • Dazzle (1932)
  • At the Sign of The Lame Dog (1933)
  • East Anglia (1933)
  • The Banquet (1934)
  • Bumphrey's (1934)
  • Flower Pot End (1935)
  • Journey to the Western Front Twenty Years After (1936)
  • The Westminster Bank 1836–1936 (1936)
  • Portrait of an Unknown Victorian (1936)
  • Old England (1937)
  • Time to Be Going (1937)
  • Autobiography with a Difference (1938)
  • Miss Lavington (1939)
  • You Can't Have It Back! (1939)
  • Trader's Dream. The Romance of the British East India Company (1939)
  • The Ghost and the Maiden (1940)
  • The Corbells At War (1943)
  • Visit of the Princess – a Romance of the 1960s (1946)
  • Buxton the Liberator (1946), biography of Thomas F. Buxton the abolitionist
  • Hibbert Houses, A Record (1947)
  • The English Counties Illustrated (1948, chapters on Norfolk, Suffolk and Cambridgeshire)
  • Norfolk (1948)
  • The Glories of Norwich Cathedral (1948)
  • The Gentleman of Leisure (1948)
  • Come to the Bower (1949)
  • East Anglia, a new guide book (1951)
  • One Hundred and Twenty-eight Witnesses (1951)
  • The Broads (1952)
  • The Part That Is Missing (1952)
  • If Stones Could Speak (1953), a social history of Norwich
  • John Galsworthy (1953), biography
  • The Window Seat or Life Observed (1954)
  • For Some We Loved (1956), biography of John Galsworthy and his wife
  • Another Window Seat (1957)
  • Vanities and Verities (1958)
  • Time's Increase (1961)
  • To Hell with Crabb Robinson (1962)
  • Behind the Shutters (1968)
  • 12 Poems (1968)
gollark: If it had a list of "visible entities" the rendering would be much faster. There isn't one.
gollark: You can't just trust clients.
gollark: ```javascriptconst getEnemy = (x, y) => { for (let i = 0; i < enemies.length; i++) { let other = enemies[i] if (other.x == x && other.y == y) return i } return -1}const getPlayer = (x, y) => { for (let i = 0; i < active_players.length; i++) { if (active_players[i]) { if (players[i].x == x && players[i].y == y) return i } } return -1}const getBonus = (x, y) => { for (let i = 0; i < bonuses.length; i++) { if (x == bonuses[i].x && y == bonuses[i].y) return i } return -1}```
gollark: This is for rendering the area around a player.
gollark: ```javascriptconst renderPlayer = (player) => { let str = "" for (let y = player.y - 5; y <= player.y + 5; y++) { for (let x = player.x - 10; x <= player.x + 10; x++) { let wallCol = getWallColor(x, y) if (x >= WIDTH) { str += wallCol } else if (y >= HEIGHT) { str += wallCol } else if (x < 0) { str += wallCol } else if (y < 0) { str += wallCol } else { let id = getEnemy(x, y) if (id != -1) { str += enemy_icons[enemies[id].id] } else { let id = getPlayer(x, y) if (id != -1) { str += players[id].icon } else { let id = getBonus(x, y) if (id != -1) { str += "?" } else { str += " " } } } } } str += "\n" } return str}```

References

  1. Cameron Self, Mousehold Heath, Norwich in Literary Norfolk, 2011. Accessed 24 February 2013.
  2. Cameron Self, Ralph Hale Mottram (1883-1971) in Literary Norfolk, 2011. Accessed 24 February 2013.
  3. Authors Mos-Moz, New General Catalog of Old Books and Authors. Accessed 24 February 2013.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.