summaryrefslogtreecommitdiff
path: root/static/poems.js
blob: af92bf2b035eb4f4c69dae01cfaa5993fc36f6e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
var challenges = [
    {
        "line": ["A", "presence", "that", "disturbs", "me", "with", "the", "joy"],
        "scansion": ["x", "/x", "/", "x/", "x", "/", "x", "/"],
        "title": "Lines written a few miles above Tintern Abbey",
        "collection": "Lyrical Ballads",
        "author": "William Wordsworth",
		"meter": "iambic pentameter",
        "ctx": `And I have felt
A presence that disturbs me with the joy
Of elevated thoughts; a sense sublime
Of something far more deeply interfused,
Whose dwelling is the light of setting suns,
And the round ocean, and the living air,
And the blue sky, and in the mind of man,
A motion and a spirit, that impels
All thinking things, all objects of all thought,
And rolls through all things.`,
        "link": "https://www.gutenberg.org/files/9622/9622-h/9622-h.htm#poem23",
    },
    {
        "line": "For the Angel of Death spread his wings on the blast".split(' '),
        "scansion": ['x', 'x', '/x', 'x', '/', 'x', 'x', '/', 'x', 'x', '/'],
        "title": "The Destruction of Sennacherib",
        "collection": "Hebrew Melodies",
        "author": "Lord Byron",
		"meter": "anapestic tetrameter",
        "ctx": `For the Angel of Death spread his wings on the blast,
And breathed in the face of the foe as he passed;
And the eyes of the sleepers waxed deadly and chill,
And their hearts but once heaved, and for ever grew still!`,
        "link": "https://www.poetryfoundation.org/poems/43827/the-destruction-of-sennacherib",
    },
    {
        "line": "Infinite wrath and infinite despair".split(' '),
        "scansion": ['x/x', '/', 'x', '/x/', 'x/'],
        "title": "Book IV",
        "collection": "Paradise Lost",
        "author": "John Milton",
		"meter": "iambic pentameter",
        "ctx": `Me miserable! which way shall I flie
Infinite wrauth, and infinite despaire?
Which way I flie is Hell; my self am Hell;
And in the lowest deep a lower deep
Still threatning to devour me opens wide,
To which the Hell I suffer seems a Heav'n.`,
        "link": "https://milton.host.dartmouth.edu/reading_room/pl/book_4/text.shtml",
    },
    {
        "line": "Underneath the moaning hemlocks".split(' '),
        "scansion": ['/x/', 'x', '/x', '/x'],
        "title": "The Famine",
        "collection": "The Song of Hiawatha",
        "author": "Henry Wadsworth Longfellow",
		"meter": "trochaic tetrameter",
        "ctx": `Then they buried Minnehaha;
In the snow a grave they made her,
In the forest deep and darksome,
Underneath the moaning hemlocks;
Clothed her in her richest garments,
Wrapped her in her robes of ermine,
Covered her with snow, like ermine;
Thus they buried Minnehaha.`,
        "link": "https://www.gutenberg.org/files/30795/30795-h/30795-h.htm#XX",
    },
    {
        "line": "Melodious birds sing madrigals".split(' '),
        "scansion": ['x/x', '/', 'x', '/x/'],
        "title": "The Passionate Shepherd to His Love",
        "collection": null,
        "author": "Christopher Marlowe",
		"meter": "iambic tetrameter",
        "ctx": `And we will sit upon the rocks,
Seeing the shepherds feed their flocks
By shallow rivers to whose falls
Melodious birds sing madrigals.`,
        "link": "https://en.wikipedia.org/wiki/The_Passionate_Shepherd_to_His_Love",
    },
]