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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<title>
The Project Gutenberg eBook of Verses, by Hilaire Belloc.
</title>
<link rel="coverpage" href="images/cover.jpg" />
<style type="text/css">
body {
margin-left: 10%;
margin-right: 10%;
}
h1,h2,h3 {
text-align: center;
clear: both;
}
p {
margin-top: .51em;
text-align: justify;
margin-bottom: .49em;
}
div.chapter {page-break-before: always;}
h2.nobreak {page-break-before: avoid;}
div.titlepage {text-align: center; page-break-before: always; page-break-after: always;}
div.titlepage p {text-align: center; font-weight: bold; line-height: 1.5; margin-top: 2em;}
hr {
width: 33%;
margin-top: 2em;
margin-bottom: 2em;
margin-left: 33.5%;
margin-right: 33.5%;
clear: both;
}
hr.chap {width: 65%; margin-left: 17.5%; margin-right: 17.5%;}
hr.tb {width: 45%; margin-left: 27.5%; margin-right: 27.5%;}
table {
margin-left: auto;
margin-right: auto;
}
.tdr {text-align: right;}
.pagenum {
position: absolute;
left: 92%;
font-size: smaller;
text-align: right;
}
.hangingindent { text-indent: -1em; margin-left: 1em; }
.center {text-align: center;}
.xlarge {font-size: 150%;}
.smcap {font-variant: small-caps;}
.ph1 {text-align: center; font-size: xx-large; font-weight: bold;}
.ph2 {text-align: center; font-size: large; font-weight: bold;}
.figcenter {
margin: auto;
text-align: center;
}
.antiqua {
font-family: Blackletter, Fraktur, Textur, "Old English Text MT", "Olde English Mt", "Olde English", Gothic, serif, sans-serif;}
.gap {margin-left: 1em;}
.footnote {margin-left: 10%; margin-right: 10%; font-size: 0.9em;}
.footnote .label {position: absolute; right: 84%; text-align: right;}
.fnanchor {
vertical-align: super;
font-size: .8em;
text-decoration:
none;
}
.poetry-container {text-align: center;}
.poetry {display: inline-block; text-align: left;}
.poetry .verse {text-indent: -2.5em; padding-left: 3em;}
.poetry .verse1 {text-indent: -2.5em; padding-left: 2.5em;}
.poetry .stanza {margin: 1em auto;}
.poetry .indent {text-indent: 1.5em;}
.poetry .indent2 {text-indent: 2.5em;}
.poetry .indent3 {text-indent: 3.5em;}
.poetry .indent4 {text-indent: 4.5em;}
.poetry .indent5 {text-indent: 5em;}
.poetry .center {text-align: center;}
.transnote {background-color: #E6E6FA;
color: black;
font-size:smaller;
padding:0.5em;
margin-bottom:5em;
font-family:sans-serif, serif; }
</style>
</head>
<body>
<div>*** START OF THE PROJECT GUTENBERG EBOOK 60487 ***</div>
<div class="figcenter"><img src="images/cover.jpg" alt="" /></div>
<hr class="chap" />
<p class="ph1">VERSES BY H. BELLOC</p>
<hr class="chap" />
<div class="figcenter"><img src="images/i_title.jpg" alt="" /></div>
<hr class="tb" />
<div class="titlepage">
<h1>VERSES</h1>
<p><i>By</i><br />
<span class="xlarge">HILAIRE BELLOC</span></p>
<p><i>With an Introduction</i><br />
<small><i>By</i></small><br />
JOYCE KILMER</p>
<div class="figcenter"><img src="images/i_titlelogo.jpg" alt="" /></div>
<p><small>NEW YORK</small><br />
LAURENCE J. GOMME<br />
1916</p>
</div>
<hr class="tb" />
<p class="center"><span class="smcap">Copyright, 1916, By<br />
Laurence J. Gomme</span><br />
<br />
VAIL-BALLOU COMPANY<br />
BINGHAMTON AND NEW YORK</p>
<hr class="chap" />
<p class="center"><span class="antiqua">To</span></p>
<p class="center"><span class="xlarge">JOHN SWINNERTON PHILLIMORE</span></p>
<p class="center">A DEDICATION<br />
WITH THIS BOOK OF VERSE</p>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<div class="verse"><i>When you and I were little tiny boys</i></div>
<div class="indent"><i>We took a most impertinent delight</i></div>
<div class="verse"><i>In foolish, painted and misshapen toys</i></div>
<div class="indent"><i>That hidden mothers brought to us at night.</i></div>
</div>
<div class="stanza">
<div class="verse"><i>Do you that have the child’s diviner part—</i></div>
<div class="indent"><i>The dear content a love familiar brings—</i></div>
<div class="verse"><i>Take these imperfect toys, till in your heart</i></div>
<div class="indent"><i>They too attain the form of perfect things?</i></div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_vii" id="Page_vii">[vii]</a></span>
<h2 class="nobreak">CONTENTS</h2></div>
<div class="hangingindent">
<table border="0" cellpadding="2" cellspacing="2" summary="table">
<tr><td> </td><td class="tdr"><small>PAGE</small></td></tr>
<tr><td><span class="smcap">Introduction</span></td><td class="tdr"><a href="#Page_xi">xi</a></td></tr>
<tr><td><span class="smcap">To Dives</span></td><td class="tdr"><a href="#Page_1">1</a></td></tr>
<tr><td><span class="smcap">Stanzas Written on Battersea Bridge During<br />
a South-Westerly Gale</span></td><td class="tdr" valign="bottom"><a href="#Page_4">4</a></td></tr>
<tr><td><span class="smcap">The South Country</span></td><td class="tdr"><a href="#Page_7">7</a></td></tr>
<tr><td><span class="smcap">The Fanatic</span></td><td class="tdr"><a href="#Page_10">10</a></td></tr>
<tr><td><span class="smcap">Noël</span></td><td class="tdr"><a href="#Page_14">14</a></td></tr>
<tr><td><span class="smcap">The Early Morning</span></td><td class="tdr"><a href="#Page_16">16</a></td></tr>
<tr><td><span class="smcap">The Birds</span></td><td class="tdr"><a href="#Page_17">17</a></td></tr>
<tr><td><span class="smcap">Our Lord and Our Lady</span></td><td class="tdr"><a href="#Page_18">18</a></td></tr>
<tr><td><span class="smcap">In a Boat</span></td><td class="tdr"><a href="#Page_20">20</a></td></tr>
<tr><td><span class="smcap">Courtesy</span></td><td class="tdr"><a href="#Page_22">22</a></td></tr>
<tr><td><span class="smcap">The Night</span></td><td class="tdr"><a href="#Page_24">24</a></td></tr>
<tr><td><span class="smcap">The Leader</span></td><td class="tdr"><a href="#Page_25">25</a></td></tr>
<tr><td><span class="smcap">A Bivouac</span></td><td class="tdr"><a href="#Page_27">27</a></td></tr>
<tr><td><span class="smcap">To the Balliol Men Still in Africa</span></td><td class="tdr"><a href="#Page_28">28</a></td></tr>
<tr><td><span class="smcap">Verses to a Lord Who, in the House of Lords,<br />
Said That Those Who Opposed the South<br />
African Adventure Confused Soldiers with<br />
Money-Grubbers</span></td><td class="tdr" valign="bottom"><a href="#Page_30">30</a></td></tr>
<tr><td><span class="smcap">The Rebel</span></td><td class="tdr"><a href="#Page_32">32</a></td></tr>
<tr><td><span class="smcap">The Prophet Lost in the Hills at Evening</span></td><td class="tdr"><a href="#Page_34">34</a></td></tr>
<tr><td><span class="smcap">Song, Inviting the Influence of a Young Lady<br />
upon the Opening Year</span></td><td class="tdr" valign="bottom"><a href="#Page_36">36</a><span class="pagenum"><a name="Page_viii" id="Page_viii">[viii]</a></span></td></tr>
<tr><td><span class="smcap">The Ring</span></td><td class="tdr"><a href="#Page_37">37</a></td></tr>
<tr><td><span class="smcap">Cuckoo</span></td><td class="tdr"><a href="#Page_38">38</a></td></tr>
<tr><td><span class="smcap">The Mirror</span></td><td class="tdr"><a href="#Page_39">39</a></td></tr>
<tr><td><span class="smcap">The Little Serving Maid</span></td><td class="tdr"><a href="#Page_40">40</a></td></tr>
<tr><td><span class="smcap">The End of the Road</span></td><td class="tdr"><a href="#Page_43">43</a></td></tr>
<tr><td><span class="smcap">Auvergnat</span></td><td class="tdr"><a href="#Page_45">45</a></td></tr>
<tr><td><span class="smcap">Drinking Song, on the Excellence of<br />
Burgundy Wine</span></td><td class="tdr" valign="bottom"><a href="#Page_46">46</a></td></tr>
<tr><td><span class="smcap">Drinking Dirge</span></td><td class="tdr"><a href="#Page_48">48</a></td></tr>
<tr><td><span class="smcap">West Sussex Drinking Song</span></td><td class="tdr"><a href="#Page_50">50</a></td></tr>
<tr><td><span class="smcap">A Ballad on Sociological Economics</span></td><td class="tdr"><a href="#Page_52">52</a></td></tr>
<tr><td><span class="smcap">An Oracle That Warned the Writer When<br />
on Pilgrimage</span></td><td class="tdr" valign="bottom"><a href="#Page_54">54</a></td></tr>
<tr><td><span class="smcap">Heretics All</span></td><td class="tdr"><a href="#Page_55">55</a></td></tr>
<tr><td><span class="smcap">The Death and Last Confession of Wandering <br />
Peter</span></td><td class="tdr" valign="bottom"><a href="#Page_56">56</a></td></tr>
<tr><td><span class="smcap">Dedicatory Ode</span></td><td class="tdr"><a href="#Page_58">58</a></td></tr>
<tr><td><span class="smcap">Dedication on the Gift of a Book to a Child</span></td><td class="tdr"><a href="#Page_66">66</a></td></tr>
<tr><td><span class="smcap">Dedication of a Child’s Book of Imaginary<br />
Tales</span></td><td class="tdr" valign="bottom"><a href="#Page_67">67</a></td></tr>
<tr><td><span class="smcap">Homage</span></td><td class="tdr"><a href="#Page_68">68</a></td></tr>
<tr><td><span class="smcap">Fille-la-Haine</span></td><td class="tdr"><a href="#Page_69">69</a></td></tr>
<tr><td><span class="smcap">The Moon’s Funeral</span></td><td class="tdr"><a href="#Page_70">70</a></td></tr>
<tr><td><span class="smcap">The Happy Journalist</span></td><td class="tdr"><a href="#Page_72">72</a></td></tr>
<tr><td><span class="smcap">Lines to a Don</span></td><td class="tdr"><a href="#Page_74">74</a><span class="pagenum"><a name="Page_ix" id="Page_ix">[ix]</a></span></td></tr>
<tr><td><span class="smcap">Newdigate Poem</span></td><td class="tdr"><a href="#Page_77">77</a></td></tr>
<tr><td><span class="smcap">The Yellow Mustard</span></td><td class="tdr"><a href="#Page_82">82</a></td></tr>
<tr><td><span class="smcap">On Hygiene</span></td><td class="tdr"><a href="#Page_83">83</a></td></tr>
<tr><td><span class="smcap">The False Heart</span></td><td class="tdr"><a href="#Page_84">84</a></td></tr>
<tr><td><span class="smcap">Sonnet upon God the Wine-Giver</span></td><td class="tdr"><a href="#Page_85">85</a></td></tr>
<tr><td><span class="smcap">The Politician or the Irish Earldom</span></td><td class="tdr"><a href="#Page_86">86</a></td></tr>
<tr><td><span class="smcap">Short Ballad and Postscript on Consols</span></td><td class="tdr"><a href="#Page_89">89</a></td></tr>
</table></div>
<p><span class="pagenum"><a name="Page_x" id="Page_x">[x]</a></span></p>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_xi" id="Page_xi">[xi]</a></span>
<h2 class="nobreak">INTRODUCTION</h2></div>
<p class="center">By <span class="smcap">Joyce Kilmer</span></p>
<p> </p>
<p>Far from the poets being astray in prose-writing
(said Francis Thompson) it might plausibly
be contended that English prose, as an art, is but
a secondary stream of the Pierian fount, and owes
its very origin to the poets. The first writer one
remembers with whom prose became an art was
Sir Philip Sidney. And Sidney was a poet.</p>
<p>This quotation is relevant to a consideration of
Hilaire Belloc, because Belloc is a poet who happens
to be known chiefly for his prose. His <i>Danton</i>
and <i>Robespierre</i> have been read by every intelligent
student of French history, his <i>Path to
Rome</i>, that most high-spirited and engaging of
travel books, has passed through many editions,
his political writings are known to all lovers—and
many foes—of democracy, his whimsically imaginative
novels have their large and appreciative<span class="pagenum"><a name="Page_xii" id="Page_xii">[xii]</a></span>
audience, and his exquisite brief essays are
contemporary classics. And since the unforgetable
month of August of the unforgetable year
1914, Hilaire Belloc has added to the number of
his friends many thousands who care little for
<i>belles lettres</i> and less for the French Revolution—he
has become certainly the most popular, and
by general opinion the shrewdest and best informed,
of all chroniclers and critics of the Great
War.</p>
<p>There is nothing, it may be said, about these
achievements to indicate the poet. How can this
most public of publicists woo the shy and exacting
Muse? His superabundant energy may now and
again overflow in little lyrical rivulets, but how
can he find time to turn it into the deep channels
of song?</p>
<p>Well, what is the difference between a poet
who writes prose and a prose-writer who writes
verse? The difference is easy to see but hard to
describe. Mr. Thomas Hardy is a prose writer.
He has forsaken the novel, of which he was so
distinguished a master, to make cynical little sonnet
portraits and to pour the acid wine of his
philosophy—a sort of perverted Presbyterianism<span class="pagenum"><a name="Page_xiii" id="Page_xiii">[xiii]</a></span>—into
the graceful amphora of poetic drama.
But he is not a poet. Thackeray was a prose-writer,
in spite of his delicious light verse. Every
novelist writes or has written verse, but not all of
them are poets.</p>
<p>Of course, Sir Walter Scott was first of all a
poet—the greatest poet who ever wrote a novel.
And no one who has read <i>Love in the Valley</i> can
hesitate to give Meredith his proper title. Was
Macaulay a poet? I think so—but perhaps I am
in a hopeless minority in my belief that the author
of <i>The Battle of Naseby</i> and <i>The Lays of Ancient
Rome</i> was the last of the great English ballad
makers.</p>
<p>But this general truth cannot, I think, honestly
be denied; there have been many great poets who
have devoted most of their lives to writing prose.
Some of them have died without discovering their
neglected talent. I think that Walter Pater was
one of these; much that is annoyingly subtle or
annoyingly elaborate in his essays needs only
rhyme and rhythm—the lovely accidents of poetry—to
become graceful and appropriate. His famous
description of the Mona Lisa is worthless if
considered as a piece of serious æsthetic criticism.<span class="pagenum"><a name="Page_xiv" id="Page_xiv">[xiv]</a></span>
But it would make an admirable sonnet. And it
is significant that Walter Pater’s two greatest
pupils—Lionel Johnson and Father Gerard Hopkins,
S.J.,—found expression for their genius not
in prose, the chosen medium of their “unforgetably
most gracious friend,” but in verse.</p>
<p>From Walter Pater, that exquisite of letters,
to the robust Hilaire Belloc may seem a long
journey. But there is, I insist, this similarity between
these contrasting writers, both are poets,
and both are known to fame by their prose.</p>
<p>For proof that Walter Pater was a poet, it is
necessary only to read his <i>Renaissance Studies</i> or
his interpretations—unsound but fascinating—of
the soul of ancient Greece. Often his essays, too
delicately accurate in phrasing or too heavily laden
with golden rhetoric, seem almost to cry aloud for
the relief of rhyme and rhythm.</p>
<p>Now, Hilaire Belloc suggests in many of his
prose sketches that he is not using his true medium.
I remember a brief essay on sleep which appeared
in <i>The New Witness</i>—or, as it was then called,
<i>The Eye Witness</i>—several years ago, which was
not so much a complete work in itself as it was a
draft for a poem. It had the economy of phrase,<span class="pagenum"><a name="Page_xv" id="Page_xv">[xv]</a></span>
the concentration of idea, which is proper to
poetry.</p>
<p>But it is not necessary in the case of Hilaire
Belloc, as it is in that of Walter Pater, to search
pages of prose for proof that their author is a
poet. Now and then—all too seldom—the idea
in this man’s brain has insisted on its right, has
scorned the proffered dress of prose, however fine
of warp and woof, however stiff with rich verbal
embroidery, and has demanded its rhymed and
rhythmed wedding garments. Therefore, for
proof that Hilaire Belloc is a poet it is necessary
only to read his poetry.</p>
<h3>II</h3>
<p>Hilaire Belloc is a poet. Also he is a Frenchman,
an Englishman, an Oxford man, a Roman
Catholic, a country gentleman, a soldier, a democrat,
and a practical journalist. He is always all
these things.</p>
<p>One sign that he is naturally a poet is that he is
never deliberately a poet. No one can imagine
him writing a poem to order—even to his own
order. The poems knock at the door of his brain
and demand to be let out. And he lets them out,<span class="pagenum"><a name="Page_xvi" id="Page_xvi">[xvi]</a></span>
carelessly enough, setting them comfortably down
on paper simply because that is the treatment they
desire. And this happens to be the way all real
poetry is made.</p>
<p>Not that all verse makers work that way.
There are men who come upon a waterfall or
mountain or an emotion and say: “Aha! here is
something out of which I can extract a poem!”
And they sit down in front of that waterfall or
mountain or emotion and think up clever things
to say about it. These things they put into
metrical form, and the result they fondly call a
poem.</p>
<p>There’s no harm in that. It’s good exercise for
the mind, and of it comes much interesting verse.
But it is not the way in which the sum of the
world’s literature is increased.</p>
<p>Could anything, for example, be less studied,
be more clearly marked with the stigmata of that
noble spontaneity we call inspiration, than the
passionate, rushing, irresistible lines “To the
Balliol Men Still in Africa”? Like Gilbert K.
Chesterton and many another English democrat,
Hilaire Belloc deeply resented his country’s war
upon the Boers. Yet his heart went out to the<span class="pagenum"><a name="Page_xvii" id="Page_xvii">[xvii]</a></span>
friends of his university days who were fighting
in Africa. They were fighting, he thought, in an
unjust cause; but they were his friends and they
were, at any rate, fighting. And so he made something
that seems (like all great writing) an utterance
rather than a composition; he put his love of
war in general and his hatred of this war in particular,
his devotion to Balliol and to the friends
of his youth into one of the very few pieces of
genuine poetry which the Boer War produced.
Nor has any of Oxford’s much-sung colleges
known praise more fit than this</p>
<div class="poetry-container">
<div class="poetry">
<div class="verse1">“House that armours a man</div>
<div class="indent">With the eyes of a boy and the heart of a ranger,</div>
<div class="verse">And a laughing way in the teeth of the world,</div>
<div class="indent">And a holy hunger and thirst for danger.”</div>
</div></div>
<p>But perhaps a more typical example of Hilaire
Belloc’s wanton genius is to be found not among
those poems which are, throughout, the beautiful
expressions of beautiful impressions, but among
those which are careless, whimsical, colloquial.
There is that delightful, but somewhat exasperating
<i>Dedicatory Ode</i>. Hilaire Belloc is talking—charmingly,
as is his custom—to some of his
friends, who had belonged, in their university days,<span class="pagenum"><a name="Page_xviii" id="Page_xviii">[xviii]</a></span>
to a youthful revolutionary organization called
the Republican Club. He happens to be talking
in verse, for no particular reason except that it
amuses him to talk in verse. He makes a number
of excellent jokes, and enjoys them very much;
his Pegasus is cantering down the road at a jolly
gait, when suddenly, to the amazement of the
spectators, it spreads out great golden wings and
flashes like a meteor across the vault of heaven!
We have been laughing at the droll tragedy of the
opium-smoking Uncle Paul; we have been enjoying
the humorous spectacle of the contemplative
freshman—and suddenly we come upon a bit of
astonishingly fine poetry. Who would expect, in
all this whimsical and jovial writing, to find this
really great stanza?</p>
<div class="poetry-container">
<div class="poetry">
<div class="verse1">“From quiet homes and first beginning,</div>
<div class="indent">Out to the undiscovered ends.</div>
<div class="verse">There’s nothing worth the wear of winning,</div>
<div class="indent">But laughter and the love of friends.”</div>
</div></div>
<p>Who having read these four lines, can forget
them? And who but a poet could write them?
But Hilaire Belloc has not forced himself into this
high mood, nor does he bother to maintain it.
He gaily passes on to another verse of drollery,<span class="pagenum"><a name="Page_xix" id="Page_xix">[xix]</a></span>
and then, not because he wishes to bring the poem
to an effective climax, but merely because it happens
to be his mood, he ends the escapade he calls
an Ode with eight or ten stanzas of nobly beautiful
poetry.</p>
<p>There is something almost uncanny about the
flashes of inspiration which dart out at the astonished
reader of Hilaire Belloc’s most frivolous
verses. Let me alter a famous epigram and call
his light verse a circus illuminated by lightning.
There is that monumental burlesque, the Newdigate
Poem—<i>A Prize Poem Submitted by Mr.
Lambkin of Burford to the Examiners of the University
of Oxford on the Prescribed Poetic Theme
Set by Them in 1893, “The Benefits of the Electric
Light.”</i> It is a tremendous joke; with every
line the reader echoes the author’s laughter. But
without the slightest warning, Hilaire Belloc
passes from the rollicking burlesque to shrewd
satire; he has been merrily jesting with a bladder
on a stick, he suddenly draws a gleaming rapier
and thrusts it into the heart of error. He makes
Mr. Lambkin say:</p>
<p><span class="pagenum"><a name="Page_xx" id="Page_xx">[xx]</a></span></p>
<div class="poetry-container">
<div class="poetry">
<div class="verse1">“Life is a veil, its paths are dark and rough</div>
<div class="verse">Only because we do not know enough:</div>
<div class="verse">When Science has discovered something more</div>
<div class="verse">We shall be happier than we were before.”</div>
</div></div>
<p>Here we find the directness and restraint which
belong to really great satire. This is the materialistic
theory, the religion of Science, not burlesqued,
not parodied, but merely stated nakedly, without
the verbal frills and furbelows with which our forward-looking
leaders of popular thought are accustomed
to cover its obscene absurdity. Almost
these very words have been uttered in a dozen
“rationalistic” pulpits I could mention, pulpits
occupied by robustuous practical gentlemen with
very large eyes, great favourites with the women’s
clubs. Their pet doctrines, their only and most
offensive dogma, is not attacked, is not ridiculed;
it is merely stated for them, in all kindness and
simplicity. They cannot answer it, they cannot
deny that it is a mercilessly fair statement of the
“philosophy” that is their stock in trade. I hope
that many of them will read it.</p>
<h3>III</h3>
<p>Hilaire Belloc was born July 27, 1870. He<span class="pagenum"><a name="Page_xxi" id="Page_xxi">[xxi]</a></span>
was educated at the Oratory School, Edgbaston,
and at Balliol College, Oxford. After leaving
school he served as a driver in the Eighth Regiment
of French Artillery at Toul Meurthe-et-Moselle,
being at that time a French citizen.
Later he was naturalized as a British subject, and
entered the House of Commons in 1906 as Liberal
Member for South Salford. British politicians
will not soon forget the motion which Hilaire
Belloc introduced one day in the early Spring of
1908, the motion that the Party funds, hitherto
secretly administered, be publicly audited. His
vigorous and persistent campaign against the party
system has placed him, with Cecil Chesterton, in
the very front ranks of those to whom the democrats
of Great Britain must look for leadership
and inspiration. He was always a keen student
of military affairs; he prophesied, long before the
event, the present international conflict, describing
with astonishing accuracy the details of the
German invasion of Belgium and the resistance of
Liège. Now he occupies a unique position among
the journalists who comment upon the War, having
tremendously increased the circulation of <i>Land
and Water</i>, the periodical for which he writes<span class="pagenum"><a name="Page_xxii" id="Page_xxii">[xxii]</a></span>
regularly, and lecturing to a huge audience once
a week on the events of the War in one of the
largest of London’s concert halls—Queen’s Hall,
where the same vast crowds that listen to the War
lectures used to gather to hear the works of the
foremost German composers.</p>
<h3>IV</h3>
<p>Hilaire Belloc, as I have said, is a Frenchman,
an Englishman, an Oxford man, a country gentleman,
a soldier, a democrat, and a practical journalist.
In all these characters he utters his poetry.
As a Frenchman, he is vivacious and gallant and
quick. He has the noble English frankness, and
that broad irresistible English mirthfulness which
is so much more inclusive than that narrow possession,
a sense of humour. Democrat though he is,
there is about him something of the atmosphere of
the country squire of some generations ago; it is
in his heartiness, his jovial dignity, his deep love
of the land. The author of <i>The South Country</i>
and <i>Courtesy</i> has made Sussex his inalienable
possession; he owns Sussex, as Dickens owns London,
and Blackmore owns Devonshire. And he<span class="pagenum"><a name="Page_xxiii" id="Page_xxiii">[xxiii]</a></span>
is thoroughly a soldier, a happy warrior, as brave
and dextrous, no one can doubt, with a sword of
steel as with a sword of words.</p>
<p>He has taken the most severe risk which a poet
can take: he has written poems about childhood.
What happened when the late Algernon Charles
Swinburne bent his energies to the task of celebrating
this theme? As the result of his solemn meditation
on the mystery of childhood, he arrived at
two conclusions, which he melodiously announced
to the world. They were, first, that the face of a
baby wearing a plush cap looks like a moss-rose
bud in its soft sheath, and, second, that “astrolabe”
rhymes with “babe.” Very charming, of
course, but certainly unworthy of a great poet.
And upon this the obvious comment is that Swinburne
was not a great poet. He took a theme terribly
great and terribly simple, and about it he
wrote ... something rather pretty.</p>
<p>Now, when a really great poet—Francis
Thompson, for example—has before him such a
theme as childhood, he does not spend his time
making far-fetched comparisons with moss-rose
buds, or hunting for words that rhyme with
“babe.” Childhood suggests Him Who made<span class="pagenum"><a name="Page_xxiv" id="Page_xxiv">[xxiv]</a></span>
childhood sacred, so the poet writes <i>Ex Ore Infantium</i>,
or such a poem as that which ends with
the line:</p>
<p class="center">“Look for me in the nurseries of Heaven.”</p>
<p>A poet may write pleasingly about mountains,
and cyclones, and battles, and the love of woman,
but if he is at all timid about the verdict of posterity
he should avoid the theme of childhood as he
would avoid the plague. For only great poets
can write about childhood poems worthy to be
printed.</p>
<p>Hilaire Belloc has written poems about children,
and they are worthy to be printed. He is
never ironic when he thinks about childhood; he is
gay, whimsical, with a slight suggestion of elfin
cynicism, but he is direct, as a child is direct. He
has written two dedicatory poems for books to be
given to children; they are slight things but they
are a revelation of their author’s power to do what
only a very few poets can do, that is, to enter into
the heart and mind of the child, following that
advice which has its literary as well as moral significance,
to “become as a little child.”</p>
<p>And in many of Hilaire Belloc’s poems by no<span class="pagenum"><a name="Page_xxv" id="Page_xxv">[xxv]</a></span>
means intended for childish audiences there is an
appealing simplicity that is genuinely and beautifully
childish, something quite different from the
adult and highly artificial simplicity of Professor
A. E. Housman’s <i>A Shropshire Lad</i>. Take that
quatrain <i>The Early Morning</i>. It is as clear and
cool as the time it celebrates; it is absolutely destitute
of rhetorical indulgence, poetical inversions
or “literary” phrasing. It is, in fact, conversation—inspired
conversation, which is poetry. It
might have been written by a Wordsworth not
painfully self-conscious, or by a Blake whose brain
was not as yet muddled with impressionistic
metaphysics.</p>
<p>And his Christmas carols—they are fit to be
sung by a chorus of children. Can any songs of
the sort receive higher praise than that? Children,
too, appreciate <i>The Birds</i> and <i>Our Lord and
Our Lady</i>. Nor is that wonderful prayer rather
flatly called <i>In a Boat</i> beyond the reach of their
intelligence.</p>
<p>Naturally enough, Hilaire Belloc is strongly
drawn to the almost violent simplicity of the ballad.
Bishop Percy would not have enjoyed the
theological and political atmosphere of <i>The Little</i><span class="pagenum"><a name="Page_xxvi" id="Page_xxvi">[xxvi]</a></span>
<i>Serving Maid</i>, but he would have acknowledged
its irresistible charm. There is that wholly delightful
poem <i>The Death and Last Confession of
Wandering Peter</i>—a most Bellocian vagabond.
“He wandered everywhere he would: and all that
he approved was sung, and most of what he saw
was good.” Says Peter:</p>
<div class="poetry-container">
<div class="poetry">
<div class="verse1">“If all that I have loved and seen</div>
<div class="indent">Be with me on the Judgment Day,</div>
<div class="verse">I shall be saved the crowd between</div>
<div class="indent">From Satan and his foul array.”</div>
</div></div>
<p>Hilaire Belloc has seen much and loved much.
He has sung lustily the things he approved—with
what hearty hatred has he sung the things he disapproved!</p>
<h3>V</h3>
<p>Hilaire Belloc is not the man to spend much
time in analysing his own emotions; he is not,
thank God, a poetical psychologist. Love songs,
drinking songs, battle songs—it is with these primitive
and democratic things that he is chiefly concerned.</p>
<p>But there is something more democratic than<span class="pagenum"><a name="Page_xxvii" id="Page_xxvii">[xxvii]</a></span>
wine or love or war. That thing is Faith. And
Hilaire Belloc’s part in increasing the sum of
the world’s beauty would not be the considerable
thing that it is were it not for his Faith. It is
not that (like Dante Gabriel Rossetti) he is attracted
by the Church’s pageantry and wealth of
legend. To Hilaire Belloc the pageantry is only
incidental, the essential thing is his Catholic Faith.
He writes convincingly about Our Lady and Saint
Joseph and the Child Jesus because he himself is
convinced. He does not delve into mediæval tradition
in quest of picturesque incidents, he merely
writes what he knows to be true. His Faith furnishes
him with the theme for those of his poems
which are most likely to endure; his Faith gives
him the “rapture of an inspiration.” His Faith
enables him, as it has enabled many another poet,
to see “in the lamp that is beauty, the light that
is God.”</p>
<p>And therein is Hilaire Belloc most thoroughly
and consistently a democrat. For in this twentieth
century it happens that there is on earth only
one genuine democratic institution. And that institution
is the Catholic Church.</p>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_1" id="Page_1">[1]</a></span>
<h2 class="nobreak">TO DIVES</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="verse"><span class="smcap">Dives,</span> when you and I go down to Hell,</div>
<div class="verse">Where scribblers end and millionaires as well,</div>
<div class="verse">We shall be carrying on our separate backs</div>
<div class="verse">Two very large but very different packs;</div>
<div class="verse">And as you stagger under yours, my friend,</div>
<div class="verse">Down the dull shore where all our journeys end,</div>
<div class="verse">And go before me (as your rank demands)</div>
<div class="verse">Towards the infinite flat underlands,</div>
<div class="verse">And that dear river of forgetfulness—</div>
<div class="verse">Charon, a man of exquisite address</div>
<div class="verse">(For, as your wife’s progenitors could tell,</div>
<div class="verse">They’re very strict on etiquette in Hell),</div>
<div class="verse">Will, since you are a lord, observe, “My lord,</div>
<div class="verse">We cannot take these weighty things aboard!”</div>
<div class="verse">Then down they go, my wretched Dives, down—</div>
<div class="verse">The fifteen sorts of boots you kept for town,</div>
<div class="verse">The hat to meet the Devil in; the plain</div>
<div class="verse">But costly ties; the cases of champagne;</div>
<div class="verse">The solid watch, and seal, and chain, and charm;</div>
<div class="verse">The working model of a Burning Farm</div><span class="pagenum"><a name="Page_2" id="Page_2">[2]</a></span>
<div class="verse">(To give the little Belials); all the three</div>
<div class="verse">Biscuits for Cerberus; the guarantee</div>
<div class="verse">From Lambeth that the Rich can never burn,</div>
<div class="verse">And even promising a safe return;</div>
<div class="verse">The admirable overcoat, designed</div>
<div class="verse">To cross Cocytus—very warmly lined:</div>
<div class="verse">Sweet Dives, you will leave them all behind</div>
<div class="verse">And enter Hell as tattered and as bare</div>
<div class="verse">As was your father when he took the air</div>
<div class="verse">Behind a barrow-load in Leicester Square.</div>
<div class="verse">Then turned to me, and noting one that brings</div>
<div class="verse">With careless step a mist of shadowy things:</div>
<div class="verse">Laughter and memories, and a few regrets,</div>
<div class="verse">Some honour, and a quantity of debts,</div>
<div class="verse">A doubt or two of sorts, a trust in God,</div>
<div class="verse">And (what will seem to you extremely odd)</div>
<div class="verse">His father’s granfer’s father’s father’s name,</div>
<div class="verse">Unspoilt, untitled, even spelt the same;</div>
<div class="verse">Charon, who twenty thousand times before</div>
<div class="verse">Has ferried Poets to the ulterior shore,</div>
<div class="verse">Will estimate the weight I bear, and cry—</div>
<div class="verse">“Comrade!” (He has himself been known to try</div>
<div class="verse">His hand at Latin and Italian verse,</div>
<div class="verse">Much in the style of Virgil—only worse)</div><span class="pagenum"><a name="Page_3" id="Page_3">[3]</a></span>
<div class="verse">“We let such vain imaginaries pass!”</div>
<div class="verse">Then tell me, Dives, which will look the ass—</div>
<div class="verse">You, or myself? Or Charon? Who can tell?</div>
<div class="verse">They order things so damnably in Hell.</div>
</div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_4" id="Page_4">[4]</a></span>
<h2 class="nobreak">STANZAS WRITTEN ON BATTERSEA<br />
BRIDGE DURING A SOUTH-WESTERLY<br />
GALE</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<div class="verse"><span class="smcap">The</span> woods and downs have caught the mid-December,</div>
<div class="indent">The noisy woods and high sea-downs of home;</div>
<div class="verse">The wind has found me and I do remember</div>
<div class="indent">The strong scent of the foam.</div>
</div>
<div class="stanza">
<div class="verse">Woods, darlings of my wandering feet, another</div>
<div class="indent">Possesses you, another treads the Down;</div>
<div class="verse">The South West Wind that was my elder brother</div>
<div class="indent">Has come to me in town.</div>
</div>
<div class="stanza">
<div class="verse">The wind is shouting from the hills of morning,</div>
<div class="indent">I do remember and I will not stay.</div>
<div class="verse">I’ll take the Hampton road without a warning</div>
<div class="indent">And get me clean away.</div>
</div>
<div class="stanza">
<div class="verse">The Channel is up, the little seas are leaping,</div>
<div class="indent">The tide is making over Arun Bar;</div><span class="pagenum"><a name="Page_5" id="Page_5">[5]</a></span>
<div class="verse">And there’s my boat, where all the rest are sleeping</div>
<div class="indent">And my companions are.</div>
</div>
<div class="stanza">
<div class="verse">I’ll board her, and apparel her, and I’ll mount her,</div>
<div class="indent">My boat, that was the strongest friend to me—</div>
<div class="verse">That brought my boyhood to its first encounter</div>
<div class="indent">And taught me the wide sea.</div>
</div>
<div class="stanza">
<div class="verse">Now shall I drive her, roaring hard a’ weather,</div>
<div class="indent">Right for the salt and leave them all behind.</div>
<div class="verse">We’ll quite forget the treacherous streets together</div>
<div class="indent">And find—or shall we find?</div>
</div>
<div class="stanza">
<div class="verse">There is no Pilotry my soul relies on</div>
<div class="indent">Whereby to catch beneath my bended hand,</div>
<div class="verse">Faint and beloved along the extreme horizon</div>
<div class="indent">That unforgotten land.</div>
</div>
<div class="stanza">
<div class="verse">We shall not round the granite piers and paven</div>
<div class="indent">To lie to wharves we know with canvas furled.</div>
<div class="verse">My little Boat, we shall not make the haven—</div>
<div class="indent">It is not of the world.</div>
</div>
<div class="stanza">
<div class="verse">Somewhere of English forelands grandly guarded</div>
<div class="indent">It stands, but not for exiles, marked and clean;</div><span class="pagenum"><a name="Page_6" id="Page_6">[6]</a></span>
<div class="verse">Oh! not for us. A mist has risen and marred it:—</div>
<div class="indent">My youth lies in between.</div>
</div>
<div class="stanza">
<div class="verse">So in this snare that holds me and appals me,</div>
<div class="indent">Where honour hardly lives nor loves remain,</div>
<div class="verse">The Sea compels me and my Country calls me,</div>
<div class="indent">But stronger things restrain.</div>
</div>
<div class="stanza">
<hr class="tb" />
</div>
<div class="stanza">
<div class="verse">England, to me that never have malingered,</div>
<div class="indent">Nor spoken falsely, nor your flattery used,</div>
<div class="verse">Nor even in my rightful garden lingered:—</div>
<div class="indent">What have you not refused?</div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_7" id="Page_7">[7]</a></span>
<h2 class="nobreak">THE SOUTH COUNTRY</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<div class="verse"><span class="smcap">When</span> I am living in the Midlands</div>
<div class="indent">That are sodden and unkind,</div>
<div class="verse">I light my lamp in the evening:</div>
<div class="indent">My work is left behind;</div>
<div class="verse">And the great hills of the South Country</div>
<div class="indent">Come back into my mind.</div>
</div>
<div class="stanza">
<div class="verse">The great hills of the South Country</div>
<div class="indent">They stand along the sea;</div>
<div class="verse">And it’s there walking in the high woods</div>
<div class="indent">That I could wish to be,</div>
<div class="verse">And the men that were boys when I was a boy</div>
<div class="indent">Walking along with me.</div>
</div>
<div class="stanza">
<div class="verse">The men that live in North England</div>
<div class="indent">I saw them for a day:</div>
<div class="verse">Their hearts are set upon the waste fells,</div>
<div class="indent">Their skies are fast and grey;</div>
<div class="verse">From their castle-walls a man may see</div>
<div class="indent">The mountains far away.</div><span class="pagenum"><a name="Page_8" id="Page_8">[8]</a></span>
</div>
<div class="stanza">
<div class="verse">The men that live in West England</div>
<div class="indent">They see the Severn strong,</div>
<div class="verse">A-rolling on rough water brown</div>
<div class="indent">Light aspen leaves along.</div>
<div class="verse">They have the secret of the Rocks,</div>
<div class="indent">And the oldest kind of song.</div>
</div>
<div class="stanza">
<div class="verse">But the men that live in the South Country</div>
<div class="indent">Are the kindest and most wise,</div>
<div class="verse">They get their laughter from the loud surf,</div>
<div class="indent">And the faith in their happy eyes</div>
<div class="verse">Comes surely from our Sister the Spring</div>
<div class="indent">When over the sea she flies;</div>
<div class="verse">The violets suddenly bloom at her feet,</div>
<div class="indent">She blesses us with surprise.</div>
</div>
<div class="stanza">
<div class="verse">I never get between the pines</div>
<div class="indent">But I smell the Sussex air;</div>
<div class="verse">Nor I never come on a belt of sand</div>
<div class="indent">But my home is there.</div>
<div class="verse">And along the sky the line of the Downs</div>
<div class="indent">So noble and so bare.</div>
</div>
<div class="stanza">
<div class="verse">A lost thing could I never find,</div>
<div class="indent">Nor a broken thing mend:</div><span class="pagenum"><a name="Page_9" id="Page_9">[9]</a></span>
<div class="verse">And I fear I shall be all alone</div>
<div class="indent">When I get towards the end.</div>
<div class="verse">Who will there be to comfort me</div>
<div class="indent">Or who will be my friend?</div>
</div>
<div class="stanza">
<div class="verse">I will gather and carefully make my friends</div>
<div class="indent">Of the men of the Sussex Weald,</div>
<div class="verse">They watch the stars from silent folds,</div>
<div class="indent">They stiffly plough the field.</div>
<div class="verse">By them and the God of the South Country</div>
<div class="indent">My poor soul shall be healed.</div>
</div>
<div class="stanza">
<div class="verse">If I ever become a rich man,</div>
<div class="indent">Or if ever I grow to be old,</div>
<div class="verse">I will build a house with deep thatch</div>
<div class="indent">To shelter me from the cold,</div>
<div class="verse">And there shall the Sussex songs be sung</div>
<div class="indent">And the story of Sussex told.</div>
</div>
<div class="stanza">
<div class="verse">I will hold my house in the high wood</div>
<div class="indent">Within a walk of the sea,</div>
<div class="verse">And the men that were boys when I was a boy</div>
<div class="indent">Shall sit and drink with me.</div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_10" id="Page_10">[10]</a></span>
<h2 class="nobreak">THE FANATIC</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="verse"><span class="smcap">Last</span> night in Compton Street, Soho,</div>
<div class="verse">A man whom many of you know</div>
<div class="verse">Gave up the ghost at half past nine.</div>
<div class="verse">That evening he had been to dine</div>
<div class="verse">At Gressington’s—an act unwise,</div>
<div class="verse">But not the cause of his demise.</div>
<div class="verse">The doctors all agree that he</div>
<div class="verse">Was touched with cardiac atrophy</div>
<div class="verse">Accelerated (more or less)</div>
<div class="verse">By lack of proper food, distress,</div>
<div class="verse">Uncleanliness, and loss of sleep.</div>
<div class="indent">He was a man that could not keep</div>
<div class="verse">His money (when he had the same)</div>
<div class="verse">Because of creditors who came</div>
<div class="verse">And took it from him; and he gave</div>
<div class="verse">So freely that he could not save.</div>
<div class="indent">But all the while a sort of whim</div>
<div class="verse">Persistently remained with him,</div>
<div class="verse">Half admirable, half absurd:</div>
<div class="verse">To keep his word, to keep his word....</div><span class="pagenum"><a name="Page_11" id="Page_11">[11]</a></span>
<div class="verse">By which he did not mean what you</div>
<div class="verse">And I would mean (of payments due</div>
<div class="verse">Or punctual rental of the Flat—</div>
<div class="verse">He was a deal too mad for that)</div>
<div class="verse">But—as he put it with a fine</div>
<div class="verse">Abandon, foolish or divine—</div>
<div class="verse">But “That great word which every man</div>
<div class="verse">Gave God before his life began.”</div>
<div class="verse">It was a sacred word, he said,</div>
<div class="verse">Which comforted the pathless dead</div>
<div class="verse">And made God smile when it was shown</div>
<div class="verse">Unforfeited, before the Throne.</div>
<div class="verse">And this (he said) he meant to hold</div>
<div class="verse">In spite of debt, and hate, and cold;</div>
<div class="verse">And this (he said) he meant to show</div>
<div class="verse">As passport to the wards below.</div>
<div class="verse">He boasted of it and gave praise</div>
<div class="verse">To his own self through all his days.</div>
<div class="indent">He wrote a record to preserve</div>
<div class="verse">How steadfastly he did not swerve</div>
<div class="verse">From keeping it; how stiff he stood</div>
<div class="verse">Its guardian, and maintained it good.</div>
<div class="verse">He had two witnesses to swear</div>
<div class="verse">He kept it once in Berkeley Square.</div><span class="pagenum"><a name="Page_12" id="Page_12">[12]</a></span>
<div class="verse">(Where hardly anything survives)</div>
<div class="verse">And, through the loneliest of lives</div>
<div class="verse">He kept it clean, he kept it still,</div>
<div class="verse">Down to the last extremes of ill.</div>
<div class="indent">So when he died, of many friends</div>
<div class="verse">Who came in crowds from all the ends</div>
<div class="verse">Of London, that it might be known</div>
<div class="verse">They knew the man who died alone,</div>
<div class="verse">Some, who had thought his mood sublime</div>
<div class="verse">And sent him soup from time to time,</div>
<div class="verse">Said, “Well, you cannot make them fit</div>
<div class="verse">The world, and there’s an end of it!”</div>
<div class="verse">But others, wondering at him, said:</div>
<div class="verse">“The man that kept his word is dead!”</div>
<div class="indent">Then angrily, a certain third</div>
<div class="verse">Cried, “Gentlemen, he kept his word.</div>
<div class="verse">And as a man whom beasts surround</div>
<div class="verse">Tumultuous, on a little mound</div>
<div class="verse">Stands Archer, for one dreadful hour,</div>
<div class="verse">Because a Man is borne to Power—</div>
<div class="verse">And still, to daunt the pack below,</div>
<div class="verse">Twangs the clear purpose of his bow,</div>
<div class="verse">Till overwhelmed he dares to fall:</div>
<div class="verse">So stood this bulwark of us all.</div><span class="pagenum"><a name="Page_13" id="Page_13">[13]</a></span>
<div class="verse">He kept his word as none but he</div>
<div class="verse">Could keep it, and as did not we.</div>
<div class="verse">And round him as he kept his word</div>
<div class="verse">To-day’s diseased and faithless herd,</div>
<div class="verse">A moment loud, a moment strong,</div>
<div class="verse">But foul forever, rolled along.”</div>
</div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_14" id="Page_14">[14]</a></span>
<h2 class="nobreak">NOËL</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<h3>I</h3>
</div>
<div class="stanza">
<div class="verse">On a winter’s night long time ago</div>
<div class="indent2">(<i>The bells ring loud and the bells ring low</i>),</div>
<div class="verse">When high howled wind, and down fell snow</div>
<div class="indent2">(Carillon, Carilla).</div>
<div class="verse">Saint Joseph he and Notre Dame,</div>
<div class="verse">Riding on an ass, full weary came</div>
<div class="verse">From Nazareth into Bethlehem.</div>
<div class="indent2">And the small child Jesus smile on you.</div>
</div>
<div class="stanza">
<h3>II</h3>
</div>
<div class="stanza">
<div class="verse">And Bethlehem inn they stood before</div>
<div class="indent2">(<i>The bells ring less and the bells ring more</i>),</div>
<div class="verse">The landlord bade them begone from his door</div>
<div class="indent2">(Carillon, Carilla).</div>
<div class="verse">“Poor folk” (says he), “must lie where they may,</div>
<div class="verse">For the Duke of Jewry comes this way,</div>
<div class="verse">With all his train on a Christmas Day.”</div>
<div class="indent2">And the small child Jesus smile on you.</div>
</div>
<div class="stanza">
<p><span class="pagenum"><a name="Page_15" id="Page_15">[15]</a></span></p>
<h3>III</h3>
</div>
<div class="stanza">
<div class="verse">Poor folk that may my carol hear</div>
<div class="indent2">(<i>The bells ring single and the bells ring clear</i>),</div>
<div class="verse">See! God’s one child had hardest cheer!</div>
<div class="indent2">(Carillon, Carilla).</div>
<div class="verse">Men grown hard on a Christmas morn;</div>
<div class="verse">The dumb beast by and a babe forlorn.</div>
<div class="verse">It was very, very cold when our Lord was born.</div>
<div class="indent2">And the small child Jesus smile on you.</div>
</div>
<div class="stanza">
<h3>IV</h3>
</div>
<div class="stanza">
<div class="verse">Now these were Jews as Jews must be</div>
<div class="indent2">(<i>The bells ring merry and the bells ring free</i>),</div>
<div class="verse">But Christian men in a band are we</div>
<div class="indent2">(Carillon, Carilla).</div>
<div class="verse">Empty we go, and ill be-dight,</div>
<div class="verse">Singing Noël on a Winter’s night.</div>
<div class="verse">Give us to sup by the warm firelight,</div>
<div class="indent2">And the small child Jesus smile on you.</div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_16" id="Page_16">[16]</a></span>
<h2 class="nobreak">THE EARLY MORNING</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="verse"><span class="smcap">The</span> moon on the one hand, the dawn on the other:</div>
<div class="verse">The moon is my sister, the dawn is my brother.</div>
<div class="verse">The moon on my left and the dawn on my right.</div>
<div class="verse">My brother, good morning: my sister, good night.</div>
</div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_17" id="Page_17">[17]</a></span>
<h2 class="nobreak">THE BIRDS</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<div class="verse">When Jesus Christ was four years old,</div>
<div class="verse">The angels brought Him toys of gold,</div>
<div class="verse">Which no man ever had bought or sold.</div>
</div>
<div class="stanza">
<div class="verse">And yet with these He would not play.</div>
<div class="verse">He made Him small fowl out of clay,</div>
<div class="verse">And blessed them till they flew away:</div>
<div class="indent5"><i>Tu creasti Domine</i>.</div>
</div>
<div class="stanza">
<div class="verse">Jesus Christ, Thou child so wise,</div>
<div class="verse">Bless mine hands and fill mine eyes,</div>
<div class="verse">And bring my soul to Paradise.</div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_18" id="Page_18">[18]</a></span>
<h2 class="nobreak">OUR LORD AND OUR LADY</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<div class="verse"><span class="smcap">They</span> warned Our Lady for the Child</div>
<div class="indent">That was Our blessed Lord,</div>
<div class="verse">And She took Him into the desert wild,</div>
<div class="indent">Over the camel’s ford.</div>
</div>
<div class="stanza">
<div class="verse">And a long song She sang to Him</div>
<div class="indent">And a short story told:</div>
<div class="verse">And She wrapped Him in a woollen cloak</div>
<div class="indent">To keep Him from the cold.</div>
</div>
<div class="stanza">
<div class="verse">But when Our Lord was grown a man</div>
<div class="indent">The Rich they dragged Him down,</div>
<div class="verse">And they crucified Him in Golgotha,</div>
<div class="indent">Out and beyond the Town.</div>
</div>
<div class="stanza">
<div class="verse">They crucified Him on Calvary,</div>
<div class="indent">Upon an April day;</div>
<div class="verse">And because He had been her little Son</div>
<div class="indent">She followed Him all the way.</div>
</div>
<div class="stanza">
<div class="verse">Our Lady stood beside the Cross,</div>
<div class="indent">A little space apart,</div><span class="pagenum"><a name="Page_19" id="Page_19">[19]</a></span>
<div class="verse">And when She heard Our Lord cry out</div>
<div class="indent">A sword went through Her Heart.</div>
</div>
<div class="stanza">
<div class="verse">They laid Our Lord in a marble tomb,</div>
<div class="indent">Dead, in a winding sheet.</div>
<div class="verse">But Our Lady stands above the world</div>
<div class="indent">With the white Moon at Her feet.</div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_20" id="Page_20">[20]</a></span>
<h2 class="nobreak">IN A BOAT</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<div class="verse"><span class="smcap">Lady!</span> Lady!</div>
<div class="verse">Upon Heaven-height,</div>
<div class="verse">Above the harsh morning</div>
<div class="verse">In the mere light.</div>
</div>
<div class="stanza">
<div class="verse">Above the spindrift</div>
<div class="verse">And above the snow,</div>
<div class="verse">Where no seas tumble,</div>
<div class="verse">And no winds blow.</div>
</div>
<div class="stanza">
<div class="verse">The twisting tides,</div>
<div class="verse">And the perilous sands</div>
<div class="verse">Upon all sides</div>
<div class="verse">Are in your holy hands.</div>
</div>
<div class="stanza">
<div class="verse">The wind harries</div>
<div class="verse">And the cold kills;</div>
<div class="verse">But I see your chapel</div>
<div class="verse">Over far hills.</div>
</div>
<div class="stanza">
<div class="verse">My body is frozen,</div>
<div class="verse">My soul is afraid:</div><span class="pagenum"><a name="Page_21" id="Page_21">[21]</a></span>
<div class="verse">Stretch out your hands to me,</div>
<div class="verse">Mother and maid.</div>
</div>
<div class="stanza">
<div class="verse">Mother of Christ,</div>
<div class="verse">And Mother of me,</div>
<div class="verse">Save me alive</div>
<div class="verse">From the howl of the sea.</div>
</div>
<div class="stanza">
<div class="verse">If you will Mother me</div>
<div class="verse">Till I grow old,</div>
<div class="verse">I will hang in your chapel</div>
<div class="verse">A ship of pure gold.</div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_22" id="Page_22">[22]</a></span>
<h2 class="nobreak">COURTESY</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<div class="verse"><span class="smcap">Of</span> Courtesy, it is much less</div>
<div class="verse">Than Courage of Heart or Holiness,</div>
<div class="verse">Yet in my Walks it seems to me</div>
<div class="verse">That the Grace of God is in Courtesy.</div>
</div>
<div class="stanza">
<div class="verse">On Monks I did in Storrington fall,</div>
<div class="verse">They took me straight into their Hall;</div>
<div class="verse">I saw Three Pictures on a wall,</div>
<div class="verse">And Courtesy was in them all.</div>
</div>
<div class="stanza">
<div class="verse">The first the Annunciation;</div>
<div class="verse">The second the Visitation;</div>
<div class="verse">The third the Consolation,</div>
<div class="verse">Of God that was Our Lady’s Son.</div>
</div>
<div class="stanza">
<div class="verse">The first was of Saint Gabriel;</div>
<div class="verse">On Wings a-flame from Heaven he fell;</div>
<div class="verse">And as he went upon one knee</div>
<div class="verse">He shone with Heavenly Courtesy.</div>
</div>
<div class="stanza">
<span class="pagenum"><a name="Page_23" id="Page_23">[23]</a></span>
<div class="verse">Our Lady out of Nazareth rode—</div>
<div class="verse">It was Her month of heavy load;</div>
<div class="verse">Yet was Her face both great and kind,</div>
<div class="verse">For Courtesy was in Her Mind.</div>
</div>
<div class="stanza">
<div class="verse">The third it was our Little Lord,</div>
<div class="verse">Whom all the Kings in arms adored;</div>
<div class="verse">He was so small you could not see</div>
<div class="verse">His large intent of Courtesy.</div>
</div>
<div class="stanza">
<div class="verse">Our Lord, that was Our Lady’s Son,</div>
<div class="verse">Go bless you, People, one by one;</div>
<div class="verse">My Rhyme is written, my work is done.</div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_24" id="Page_24">[24]</a></span>
<h2 class="nobreak">THE NIGHT</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<div class="verse"><span class="smcap">Most</span> holy Night, that still dost keep</div>
<div class="verse">The keys of all the doors of sleep,</div>
<div class="verse">To me when my tired eyelids close</div>
<div class="indent2">Give thou repose.</div>
</div>
<div class="stanza">
<div class="verse">And let the far lament of them</div>
<div class="verse">That chaunt the dead day’s requiem</div>
<div class="verse">Make in my ears, who wakeful lie,</div>
<div class="indent2">Soft lullaby.</div>
</div>
<div class="stanza">
<div class="verse">Let them that guard the horned moon</div>
<div class="verse">By my bedside their memories croon.</div>
<div class="verse">So shall I have new dreams and blest</div>
<div class="indent2">In my brief rest.</div>
</div>
<div class="stanza">
<div class="verse">Fold your great wings about my face,</div>
<div class="verse">Hide dawning from my resting-place,</div>
<div class="verse">And cheat me with your false delight,</div>
<div class="indent2">Most Holy Night.</div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_25" id="Page_25">[25]</a></span>
<h2 class="nobreak">THE LEADER</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<div class="verse"><span class="smcap">The</span> sword fell down: I heard a knell;</div>
<div class="indent">I thought that ease was best,</div>
<div class="verse">And sullen men that buy and sell</div>
<div class="indent">Were host: and I was guest.</div>
<div class="verse">All unashamed I sat with swine,</div>
<div class="indent">We shook the dice for war,</div>
<div class="verse">The night was drunk with an evil wine—</div>
<div class="indent">But she went on before.</div>
</div>
<div class="stanza">
<div class="indent2"><i>She rode a steed of the sea-foam breed,</i></div>
<div class="indent3"><i>All faery was her blade,</i></div>
<div class="indent2"><i>And the armour on her tender limbs</i></div>
<div class="indent3"><i>Was of the moonshine made.</i></div>
</div>
<div class="stanza">
<div class="verse">By God that sends the master-maids,</div>
<div class="indent">I know not whence she came,</div>
<div class="verse">But the sword she bore to save the soul</div>
<div class="indent">Went up like an altar flame</div>
<div class="verse">Where a broken race in a desert place</div>
<div class="indent">Call on the Holy Name.</div>
</div>
<div class="stanza">
<div class="indent2"><i>We strained our eyes in the dim day-rise,</i></div><span class="pagenum"><a name="Page_26" id="Page_26">[26]</a></span>
<div class="indent3"><i>We could not see them plain;</i></div>
<div class="indent2"><i>But two dead men from Valmy fen</i></div>
<div class="indent3"><i>Rode at her bridle-rein.</i></div>
</div>
<div class="stanza">
<div class="verse">I hear them all, my fathers call,</div>
<div class="indent">I see them how they ride,</div>
<div class="verse">And where had been that rout obscene</div>
<div class="indent">Was an army straight with pride.</div>
<div class="verse">A hundred thousand marching men,</div>
<div class="indent">Of squadrons twenty score,</div>
<div class="verse">And after them all the guns, the guns,</div>
<div class="indent">But she went on before.</div>
</div>
<div class="stanza">
<div class="indent2"><i>Her face was like a king’s command</i> </div>
<div class="indent3"><i>When all the swords are drawn.</i></div>
<div class="indent2"><i>She stretched her arms and smiled at us,</i></div>
<div class="indent2"><i>Her head was higher than the hills.</i></div>
<div class="indent2"><i>She led us to the endless plains.</i></div>
<div class="indent3"><i>We lost her in the dawn.</i></div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_27" id="Page_27">[27]</a></span>
<h2 class="nobreak">A BIVOUAC</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<h3>I</h3>
</div>
<div class="stanza">
<div class="verse"><span class="smcap">You</span> came without a human sound,</div>
<div class="indent">You came and brought my soul to me;</div>
<div class="verse">I only woke, and all around</div>
<div class="verse">They slumbered on the firelit ground,</div>
<div class="indent">Beside the guns in Burgundy.</div>
</div>
<div class="stanza">
<h3>II</h3>
</div>
<div class="stanza">
<div class="verse">I felt the gesture of your hands,</div>
<div class="indent">You signed my forehead with the Cross;</div>
<div class="verse">The gesture of your holy hands</div>
<div class="verse">Was bounteous—like the misty lands</div>
<div class="indent">Along the Hills in Calvados.</div>
</div>
<div class="stanza">
<h3>III</h3>
</div>
<div class="stanza">
<div class="verse">But when I slept I saw your eyes,</div>
<div class="indent">Hungry as death, and very far.</div>
<div class="verse">I saw demand in your dim eyes</div>
<div class="verse">Mysterious as the moons that rise</div>
<div class="indent">At midnight, in the Pines of Var.</div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_28" id="Page_28">[28]</a></span>
<h2 class="nobreak">TO THE BALLIOL MEN STILL IN AFRICA</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<div class="verse"><span class="smcap">Years</span> ago when I was at Balliol,</div>
<div class="indent">Balliol men—and I was one—</div>
<div class="verse">Swam together in winter rivers,</div>
<div class="indent">Wrestled together under the sun.</div>
<div class="verse">And still in the heart of us, Balliol, Balliol,</div>
<div class="indent">Loved already, but hardly known,</div>
<div class="verse">Welded us each of us into the others:</div>
<div class="indent">Called a levy and chose her own.</div>
</div>
<div class="stanza">
<div class="verse">Here is a House that armours a man</div>
<div class="indent">With the eyes of a boy and the heart of a ranger,</div>
<div class="verse">And a laughing way in the teeth of the world</div>
<div class="indent">And a holy hunger and thirst for danger:</div>
<div class="verse">Balliol made me, Balliol fed me,</div>
<div class="indent">Whatever I had she gave me again:</div>
<div class="verse">And the best of Balliol loved and led me.</div>
<div class="indent">God be with you, Balliol men.</div>
</div>
<div class="stanza">
<div class="verse">I have said it before, and I say it again,</div>
<div class="indent">There was treason done, and a false word spoken,</div><span class="pagenum"><a name="Page_29" id="Page_29">[29]</a></span>
<div class="verse">And England under the dregs of men,</div>
<div class="indent">And bribes about, and a treaty broken:</div>
</div>
<div class="stanza">
<div class="verse">But angry, lonely, hating it still,</div>
<div class="indent">I wished to be there in spite of the wrong.</div>
<div class="verse">My heart was heavy for Cumnor Hill</div>
<div class="indent">And the hammer of galloping all day long.</div>
</div>
<div class="stanza">
<div class="verse">Galloping outward into the weather,</div>
<div class="indent">Hands a-ready and battle in all:</div>
<div class="verse">Words together and wine together</div>
<div class="indent">And song together in Balliol Hall.</div>
<div class="verse">Rare and single! Noble and few!...</div>
<div class="indent">Oh! they have wasted you over the sea!</div>
<div class="verse">The only brothers ever I knew,</div>
<div class="indent">The men that laughed and quarrelled with me.</div>
</div>
<div class="stanza">
<hr class="tb" />
</div>
<div class="stanza">
<div class="verse">Balliol made me, Balliol fed me,</div>
<div class="indent">Whatever I had she gave me again;</div>
<div class="verse">And the best of Balliol loved and led me,</div>
<div class="indent">God be with you, Balliol men.</div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_30" id="Page_30">[30]</a></span>
<h2 class="nobreak">VERSES TO A LORD</h2></div>
<p class="center">WHO, IN THE HOUSE OF LORDS, SAID THAT<br />
THOSE WHO OPPOSED THE SOUTH AFRICAN<br />
ADVENTURE CONFUSED SOLDIERS<br />
WITH MONEY-GRUBBERS</p>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<div class="verse"><span class="smcap">You</span> thought because we held, my lord,</div>
<div class="indent">An ancient cause and strong,</div>
<div class="verse">That therefore we maligned the sword:</div>
<div class="indent">My lord, you did us wrong.</div>
</div>
<div class="stanza">
<div class="verse">We also know the sacred height</div>
<div class="indent">Up on Tugela side,</div>
<div class="verse">Where those three hundred fought with Beit</div>
<div class="indent">And fair young Wernher died.</div>
</div>
<div class="stanza">
<div class="verse">The daybreak on the failing force,</div>
<div class="indent">The final sabres drawn:</div>
<div class="verse">Tall Goltman, silent on his horse,</div>
<div class="indent">Superb against the dawn.</div>
</div>
<div class="stanza">
<span class="pagenum"><a name="Page_31" id="Page_31">[31]</a></span>
<div class="verse">The little mound where Eckstein stood</div>
<div class="indent">And gallant Albu fell,</div>
<div class="verse">And Oppenheim, half blind with blood,</div>
<div class="verse">Went fording through the rising flood—</div>
<div class="indent">My Lord, we know them well.</div>
</div>
<div class="stanza">
<div class="verse">The little empty homes forlorn,</div>
<div class="verse">The ruined synagogues that mourn,</div>
<div class="indent">In Frankfort and Berlin;</div>
<div class="verse">We knew them when the peace was torn—</div>
<div class="verse">We of a nobler lineage born—</div>
<div class="verse">And now by all the gods of scorn</div>
<div class="indent">We mean to rub them in.</div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_32" id="Page_32">[32]</a></span>
<h2 class="nobreak">THE REBEL</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<div class="verse"><span class="smcap">There</span> is a wall of which the stones</div>
<div class="verse">Are lies and bribes and dead men’s bones.</div>
<div class="verse">And wrongfully this evil wall</div>
<div class="verse">Denies what all men made for all,</div>
<div class="verse">And shamelessly this wall surrounds</div>
<div class="verse">Our homesteads and our native grounds.</div>
</div>
<div class="stanza">
<div class="verse">But I will gather and I will ride,</div>
<div class="verse">And I will summon a countryside,</div>
<div class="verse">And many a man shall hear my halloa</div>
<div class="verse">Who never had thought the horn to follow;</div>
<div class="verse">And many a man shall ride with me</div>
<div class="verse">Who never had thought on earth to see</div>
<div class="verse">High Justice in her armoury.</div>
</div>
<div class="stanza">
<div class="verse">When we find them where they stand,</div>
<div class="verse">A mile of men on either hand,</div>
<div class="verse">I mean to charge from right away</div>
<div class="verse">And force the flanks of their array,</div>
<div class="verse">And press them inward from the plains,</div>
<div class="verse">And drive them clamouring down the lanes,</div><span class="pagenum"><a name="Page_33" id="Page_33">[33]</a></span>
<div class="verse">And gallop and harry and have them down,</div>
<div class="verse">And carry the gates and hold the town.</div>
<div class="verse">Then shall I rest me from my ride</div>
<div class="verse">With my great anger satisfied.</div>
</div>
<div class="stanza">
<div class="verse">Only, before I eat and drink,</div>
<div class="verse">When I have killed them all, I think</div>
<div class="verse">That I will batter their carven names,</div>
<div class="verse">And slit the pictures in their frames,</div>
<div class="verse">And burn for scent their cedar door,</div>
<div class="verse">And melt the gold their women wore,</div>
<div class="verse">And hack their horses at the knees,</div>
<div class="verse">And hew to death their timber trees,</div>
<div class="verse">And plough their gardens deep and through—</div>
<div class="verse">And all these things I mean to do</div>
<div class="verse">For fear perhaps my little son</div>
<div class="verse">Should break his hands, as I have done.</div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_34" id="Page_34">[34]</a></span>
<h2 class="nobreak">THE PROPHET LOST IN THE HILLS<br />
AT EVENING</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<div class="verse"><span class="smcap">Strong</span> God which made the topmost stars</div>
<div class="indent">To circulate and keep their course,</div>
<div class="verse">Remember me; whom all the bars</div>
<div class="indent">Of sense and dreadful fate enforce.</div>
</div>
<div class="stanza">
<div class="verse">Above me in your heights and tall,</div>
<div class="indent">Impassable the summits freeze,</div>
<div class="verse">Below the haunted waters call</div>
<div class="indent">Impassable beyond the trees.</div>
</div>
<div class="stanza">
<div class="verse">I hunger and I have no bread.</div>
<div class="indent">My gourd is empty of the wine.</div>
<div class="verse">Surely the footsteps of the dead</div>
<div class="indent">Are shuffling softly close to mine!</div>
</div>
<div class="stanza">
<div class="verse">It darkens. I have lost the ford.</div>
<div class="indent">There is a change on all things made.</div>
<div class="verse">The rocks have evil faces, Lord,</div>
<div class="indent">And I am awfully afraid.</div>
</div>
<div class="stanza">
<span class="pagenum"><a name="Page_35" id="Page_35">[35]</a></span>
<div class="verse">Remember me! the Voids of Hell</div>
<div class="indent">Expand enormous all around.</div>
<div class="verse">Strong friend of souls, Emmanuel,</div>
<div class="indent">Redeem me from accursed ground.</div>
</div>
<div class="stanza">
<div class="verse">The long descent of wasted days,</div>
<div class="indent">To these at last have led me down;</div>
<div class="verse">Remember that I filled with praise</div>
<div class="verse">The meaningless and doubtful ways</div>
<div class="indent">That lead to an eternal town.</div>
</div>
<div class="stanza">
<div class="verse">I challenged and I kept the Faith,</div>
<div class="indent">The bleeding path alone I trod;</div>
<div class="verse">It darkens. Stand about my wraith,</div>
<div class="indent">And harbour me—almighty God!</div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_36" id="Page_36">[36]</a></span>
<h2 class="nobreak">SONG</h2></div>
<p class="center">INVITING THE INFLUENCE OF A YOUNG LADY<br />
UPON THE OPENING YEAR</p>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<h3>I</h3>
</div>
<div class="stanza">
<div class="verse"><span class="smcap">You</span> wear the morning like your dress</div>
<div class="verse">And are with mastery crowned;</div>
<div class="verse">Whenas you walk your loveliness</div>
<div class="verse">Goes shining all around.</div>
<div class="verse">Upon your secret, smiling way</div>
<div class="verse">Such new contents were found,</div>
<div class="verse">The Dancing Loves made holiday</div>
<div class="verse">On that delightful ground.</div>
</div>
<div class="stanza">
<h3>II</h3>
</div>
<div class="stanza">
<div class="verse">Then summon April forth, and send</div>
<div class="verse">Commandment through the flowers;</div>
<div class="verse">About our woods your grace extend</div>
<div class="verse">A queen of careless hours.</div>
<div class="verse">For oh, not Vera veiled in rain,</div>
<div class="verse">Nor Dian’s sacred Ring,</div>
<div class="verse">With all her royal nymphs in train</div>
<div class="verse">Could so lead on the Spring.</div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_37" id="Page_37">[37]</a></span>
<h2 class="nobreak">THE RING</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<div class="verse"><span class="smcap">When</span> I was flying before the King</div>
<div class="verse">In the wood of Valognes in my hiding,</div>
<div class="verse">Although I had not anything</div>
<div class="verse">I sent a woman a golden ring.</div>
</div>
<div class="stanza">
<div class="verse">A Ring of the Moors beyond Leon</div>
<div class="verse">With emerald and with diamond stone,</div>
<div class="verse">And a writing no man ever had known,</div>
<div class="verse">And an opal standing all alone.</div>
</div>
<div class="stanza">
<div class="verse">The shape of the ring the heart to bind:</div>
<div class="verse">The emerald turns from cold to kind:</div>
<div class="verse">The writing makes her sure to find:—</div>
<div class="verse">But the evil opal changed her mind.</div>
</div>
<div class="stanza">
<div class="verse">Now when the King was dead, was he,</div>
<div class="verse">I came back hurriedly over the sea</div>
<div class="verse">From the long rocks in Normandy</div>
<div class="verse">To Bosham that is by Selsey.</div>
<div class="verse">And we clipt each other knee to knee.</div>
<div class="verse">But what I had was lost to me.</div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_38" id="Page_38">[38]</a></span>
<h2 class="nobreak">CUCKOO!</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="verse"><span class="smcap">In</span> woods so long time bare.</div>
<div class="indent2">Cuckoo!</div>
<div class="verse">Up and in the wood, I know not where</div>
<div class="verse">Two notes fall.</div>
<div class="verse">Yet I do not envy him at all</div>
<div class="verse">His phantasy.</div>
<div class="verse">Cuckoo!</div>
<div class="verse">I too,</div>
<div class="verse">Somewhere,</div>
<div class="verse">I have sung as merrily as he</div>
<div class="verse">Who can dare,</div>
<div class="verse">Small and careless lover, so to laugh at care,</div>
<div class="verse">And who</div>
<div class="verse">Can call</div>
<div class="verse">Cuckoo!</div>
<div class="verse">In woods of winter weary,</div>
<div class="verse">In scented woods, of winter weary, call</div>
<div class="verse">Cuckoo!</div>
<div class="verse">In woods so long time bare.</div>
</div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_39" id="Page_39">[39]</a></span>
<h2 class="nobreak">THE MIRROR</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<div class="verse"><span class="smcap">The</span> mirror held your Fair, my Fair,</div>
<div class="indent">A fickle moment’s space;</div>
<div class="verse">You looked into mine eyes and there</div>
<div class="indent">For ever fixed your face.</div>
</div>
<div class="stanza">
<div class="verse">Keep rather to your Looking Glass</div>
<div class="indent">Than my more faithful eyes.</div>
<div class="verse">It told the truth. Alas! my lass!</div>
<div class="indent">My constant memory lies.</div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_40" id="Page_40">[40]</a></span>
<h2 class="nobreak">THE LITTLE SERVING MAID</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<h3>I</h3>
</div>
<div class="stanza">
<div class="verse"><span class="smcap">There</span> was a Queen of England,</div>
<div class="indent">And a good Queen too.</div>
<div class="verse">She had a house in Powis Land</div>
<div class="indent">With the Severn running through;</div>
<div class="verse">And Men-folk and Women-folk</div>
<div class="indent">Apprenticed to a trade;</div>
<div class="verse">But the prettiest of all</div>
<div class="indent">Was a Little Serving Maid.</div>
</div>
<div class="stanza">
<h3>II</h3>
</div>
<div class="stanza">
<div class="verse">“Oh Madam, Queen of England!</div>
<div class="indent">Oh will you let me go!</div>
<div class="verse">For there’s a Lad in London</div>
<div class="indent">And he would have it so.</div>
<div class="verse">And I would have it too, Madam,</div>
<div class="indent">And with him would I bide;</div>
<div class="verse">And he will be the Groom, Madam,</div>
<div class="indent">And I shall be the Bride!”</div>
</div>
<div class="stanza">
<span class="pagenum"><a name="Page_41" id="Page_41">[41]</a></span>
<h3>III</h3>
</div>
<div class="stanza">
<div class="verse">“Oh fie to you and shame to you,</div>
<div class="indent">You Little Serving Maid!</div>
<div class="verse">And are you not astonied?</div>
<div class="indent">And are you not afraid?</div>
<div class="verse">For never was it known</div>
<div class="indent">Since Yngelonde began</div>
<div class="verse">That a Little Serving Maid</div>
<div class="indent">Should go a-meeting of a man!”</div>
</div>
<div class="stanza">
<h3>IV</h3>
</div>
<div class="stanza">
<div class="verse">Then the Little Serving Maid</div>
<div class="indent">She went and laid her down,</div>
<div class="verse">With her cross and her bede,</div>
<div class="indent">In her new courting gown.</div>
<div class="verse">And she called in Mother Mary’s name</div>
<div class="indent">And heavily she sighed:</div>
<div class="verse">“I think that I have come to shame!”</div>
<div class="indent">And after that she died.</div>
</div>
<div class="stanza">
<h3>V</h3>
</div>
<div class="stanza">
<div class="verse">The good Queen of England</div>
<div class="indent">Her women came and ran:</div>
<div class="verse">“The Little Serving Maid is dead</div>
<div class="indent">From loving of a man!”</div><span class="pagenum"><a name="Page_42" id="Page_42">[42]</a></span>
<div class="verse">Said the good Queen of England</div>
<div class="indent">“That is ill news to hear!</div>
<div class="verse">Take her out and shroud her,</div>
<div class="indent">And lay her on a bier.”</div>
</div>
<div class="stanza">
<h3>VI</h3>
</div>
<div class="stanza">
<div class="verse">They laid her on a bier,</div>
<div class="indent">In the court-yard all;</div>
<div class="verse">Some came from Foresting,</div>
<div class="indent">And some came from Hall.</div>
<div class="verse">And Great Lords carried her,</div>
<div class="indent">And proud Priests prayed.</div>
<div class="verse">And that was the end</div>
<div class="indent">Of the Little Serving Maid.</div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_43" id="Page_43">[43]</a></span>
<h2 class="nobreak">THE END OF THE ROAD</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="verse"><span class="smcap">In these boots and with this staff</span></div>
<div class="verse">Two hundred leaguers and a half</div>
<div class="verse">Walked I, went I, paced I, tripped I,</div>
<div class="verse">Marched I, held I, skelped I, slipped I,</div>
<div class="verse">Pushed I, panted, swung and dashed I;</div>
<div class="verse">Picked I, forded, swam and splashed I,</div>
<div class="verse">Strolled I, climbed I, crawled and scrambled,</div>
<div class="verse">Dropped and dipped I, ranged and rambled;</div>
<div class="verse">Plodded I, hobbled I, trudged and tramped I,</div>
<div class="verse">And in lonely spinnies camped I,</div>
<div class="verse">And in haunted pinewoods slept I,</div>
<div class="verse">Lingered, loitered, limped and crept I,</div>
<div class="verse">Clambered, halted, stepped and leapt I;</div>
<div class="verse">Slowly sauntered, roundly strode I,</div>
<div class="verse">And ... (Oh! Patron saints and Angels</div>
<div class="indent5">That protect the four Evangels!</div>
<div class="indent5">And you Prophets vel majores</div>
<div class="indent5">Vel incerti, vel minores,</div>
<div class="indent5">Virgines ac confessores</div>
<div class="indent5">Chief of whose peculiar glories</div><span class="pagenum"><a name="Page_44" id="Page_44">[44]</a></span>
<div class="indent5">Est in Aula Regis stare</div>
<div class="indent5">Atque orare et exorare</div>
<div class="indent5">Et clamare et conclamare</div>
<div class="indent5">Clamantes cum clamoribus</div>
<div class="indent5">Pro Nobis Peccatoribus.)</div>
<div class="verse">Let me not conceal it.... <i>Rode I.</i></div>
<div class="verse">(For who but critics could complain</div>
<div class="verse">Of “riding” in a railway train?)</div>
<div class="verse">Across the valley and the high-land,</div>
<div class="verse">With all the world on either hand</div>
<div class="verse">Drinking when I had a mind to,</div>
<div class="verse">Singing when I felt inclined to;</div>
<div class="verse">Nor ever turned my face to home</div>
<div class="verse">Till I had slaked my heart at Rome.</div>
</div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_45" id="Page_45">[45]</a></span>
<h2 class="nobreak">AUVERGNAT</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<div class="verse"><span class="smcap">There</span> was a man was half a clown</div>
<div class="indent">(It’s so my father tells of it).</div>
<div class="verse">He saw the church in Clermont town</div>
<div class="verse">And laughed to hear the bells of it.</div>
</div>
<div class="stanza">
<div class="verse">He laughed to hear the bells that ring</div>
<div class="verse">In Clermont Church and round of it;</div>
<div class="verse">He heard the verger’s daughter sing,</div>
<div class="verse">And loved her for the sound of it.</div>
</div>
<div class="stanza">
<div class="verse">The verger’s daughter said him nay;</div>
<div class="verse">She had the right of choice in it.</div>
<div class="verse">He left the town at break of day:</div>
<div class="verse">He hadn’t had a voice in it.</div>
</div>
<div class="stanza">
<div class="verse">The road went up, the road went down,</div>
<div class="verse">And there the matter ended it.</div>
<div class="verse">He broke his heart in Clermont town,</div>
<div class="verse">At Pontgibaud they mended it.</div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_46" id="Page_46">[46]</a></span>
<h2 class="nobreak">DRINKING SONG</h2></div>
<p class="center">ON THE EXCELLENCE OF BURGUNDY WINE</p>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<div class="verse"><span class="smcap">My</span> jolly fat host with your face all a-grin,</div>
<div class="verse">Come, open the door to us, let us come in.</div>
<div class="verse">A score of stout fellows who think it no sin</div>
<div class="verse">If they toast till they’re hoarse, and they drink till they spin,</div>
<div class="indent4">Hoofed it amain,</div>
<div class="indent4">Rain or no rain,</div>
<div class="indent3">To crack your old jokes, and your bottles to drain.</div>
</div>
<div class="stanza">
<div class="verse">Such a warmth in the belly that nectar begets</div>
<div class="verse">As soon as his guts with its humour he wets,</div>
<div class="verse">The miser his gold, and the student his debts,</div>
<div class="verse">And the beggar his rags and his hunger forgets.</div>
<div class="indent4">For there’s never a wine</div>
<div class="indent4">Like this tipple of thine</div>
<div class="indent3">From the great hill of Nuits to the River of Rhine.</div>
</div>
<div class="stanza">
<span class="pagenum"><a name="Page_47" id="Page_47">[47]</a></span>
<div class="verse">Outside you may hear the great gusts as they go</div>
<div class="verse">By Foy, by Duerne, and the hills of Lerraulx,</div>
<div class="verse">But the rain he may rain, and the wind he may blow,</div>
<div class="verse">If the Devil’s above there’s good liquor below.</div>
<div class="indent4">So it abound,</div>
<div class="indent4">Pass it around,</div>
<div class="indent3">Burgundy’s Burgundy all the year round.</div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_48" id="Page_48">[48]</a></span>
<h2 class="nobreak">DRINKING DIRGE</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<div class="verse"><span class="smcap">A thousand</span> years ago I used to dine</div>
<div class="indent">In houses where they gave me such regale</div>
<div class="verse">Of dear companionship and comrades fine</div>
<div class="indent">That out I went alone beyond the pale;</div>
<div class="verse">And riding, laughed and dared the skies malign</div>
<div class="indent">To show me all the undiscovered tale—</div>
<div class="verse">But my philosophy’s no more divine,</div>
<div class="indent">I put my pleasure in a pint of ale.</div>
</div>
<div class="stanza">
<div class="verse">And you, my friends, oh! pleasant friends of mine,</div>
<div class="indent">Who leave me now alone, without avail,</div>
<div class="verse">On Californian hills you gave me wine,</div>
<div class="indent">You gave me cider-drink in Longuevaille;</div>
<div class="verse">If after many years you come to pine</div>
<div class="indent">For comradeship that is an ancient tale—</div>
<div class="verse">You’ll find me drinking beer in Dead Man’s Chine.</div>
<div class="indent">I put my pleasure in a pint of ale.</div>
</div>
<div class="stanza">
<div class="verse">In many a briny boat I’ve tried the brine,</div>
<div class="indent">From many a hidden harbour I’ve set sail,</div>
<div class="verse">Steering towards the sunset where there shine</div>
<div class="indent">The distant amethystine islands pale.</div><span class="pagenum"><a name="Page_49" id="Page_49">[49]</a></span>
<div class="verse">There are no ports beyond the far sea-line,</div>
<div class="indent">Nor any halloa to meet the mariner’s hail;</div>
<div class="verse">I stand at home and slip the anchor-line.</div>
<div class="indent">I put my pleasure in a pint of ale.</div>
</div>
<div class="stanza">
<h3>ENVOI</h3>
</div>
<div class="stanza">
<div class="verse">Prince! Is it true when you go out to dine</div>
<div class="indent">You bring your bottle in a freezing pail?</div>
<div class="verse">Why then you cannot be a friend of mine.</div>
<div class="indent"><i>I</i> put my pleasure in a pint of ale.</div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_50" id="Page_50">[50]</a></span>
<h2 class="nobreak">WEST SUSSEX DRINKING SONG</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<div class="verse"><span class="smcap">They</span> sell good Beer at Haslemere</div>
<div class="indent">And under Guildford Hill.</div>
<div class="verse">At Little Cowfold as I’ve been told</div>
<div class="indent">A beggar may drink his fill:</div>
<div class="verse">There is a good brew in Amberley too,</div>
<div class="indent">And by the bridge also;</div>
<div class="verse">But the swipes they take in at Washington Inn</div>
<div class="indent">Is the very best Beer I know.</div>
</div>
<div class="stanza">
<div class="center"><i>Chorus</i></div>
</div>
<div class="stanza">
<div class="indent">With my here it goes, there it goes,</div>
<div class="indent2">All the fun’s before us:</div>
<div class="indent">The Tipple’s Aboard and the night is young,</div>
<div class="indent">The door’s ajar and the Barrel is sprung,</div>
<div class="indent">I am singing the best song ever was sung</div>
<div class="indent2">And it has a rousing chorus.</div>
</div>
<div class="stanza">
<div class="verse">If I were what I never can be,</div>
<div class="indent">The master or the squire:</div>
<div class="verse">If you gave me the hundred from here to the sea,</div>
<div class="indent">Which is more than I desire:</div>
<span class="pagenum"><a name="Page_51" id="Page_51">[51]</a></span>
<div class="verse">Then all my crops should be barley and hops,</div>
<div class="indent">And did my harvest fail</div>
<div class="verse">I’d sell every rood of mine acres I would</div>
<div class="indent">For a belly-full of good Ale.</div>
</div>
<div class="stanza">
<div class="center"><i>Chorus</i></div>
</div>
<div class="stanza">
<div class="indent">With my here it goes, there it goes,</div>
<div class="indent2">All the fun’s before us:</div>
<div class="indent">The Tipple’s aboard and the night is young,</div>
<div class="indent">The door’s ajar and the Barrel is sprung,</div>
<div class="indent">I am singing the best song ever was sung</div>
<div class="indent2">And it has a rousing chorus.</div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_52" id="Page_52">[52]</a></span>
<h2 class="nobreak">A BALLAD ON SOCIOLOGICAL<br />
ECONOMICS</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<div class="verse"><span class="smcap">A while</span> ago it came to pass</div>
<div class="indent">(Merry we carol it all the day),</div>
<div class="verse">There sat a man on the top of an ass</div>
<div class="indent">(Heart be happy and carol be gay</div>
<div class="indent2">In spite of the price of hay).</div>
</div>
<div class="stanza">
<div class="verse">And over the down they hoofed it so</div>
<div class="indent">(Happy go lucky has best of fare),</div>
<div class="verse">The man up above and the brute below</div>
<div class="indent">(And singing we all forget to care</div>
<div class="indent2">A man may laugh if he dare).</div>
</div>
<div class="stanza">
<div class="verse">Over the stubble and round the crop</div>
<div class="indent">(Life is short and the world is round),</div>
<div class="verse">The donkey beneath and the man on top</div>
<div class="indent">(Oh! let good ale be found, be found,</div>
<div class="indent2">Merry good ale and sound).</div>
</div>
<div class="stanza">
<div class="verse">It happened again as it happened before</div>
<div class="indent">(Tobacco’s a boon but ale is bliss),</div><span class="pagenum"><a name="Page_53" id="Page_53">[53]</a></span>
<div class="verse">The moke in the ditch and the man on the floor</div>
<div class="indent">(And that is the moral to this, to this</div>
<div class="indent2">Remarkable artifice).</div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_54" id="Page_54">[54]</a></span>
<h2 class="nobreak">AN ORACLE</h2></div>
<p class="center">THAT WARNED THE WRITER WHEN ON<br />
PILGRIMAGE</p>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<div class="verse"><span class="smcap">Matutinus</span> adest ubi Vesper, et accipiens te</div>
<div class="verse">Saepe recusatum voces intelligit hospes</div>
<div class="verse">Rusticus ignotas notas, ac flumina tellus</div>
<div class="verse">Occupat—In sancto tum, tum, stans Aede caveto</div>
<div class="verse">Tonsuram Hirsuti Capitis, via namque pedestrem</div>
<div class="verse">Ferrea praeveniens cursum, peregrine, laborem</div>
<div class="verse">Pro pietate tua inceptum frustratur, amore</div>
<div class="verse">Antiqui Ritus alto sub Numine Romae.</div>
</div>
<div class="stanza">
<div class="verse"><i>Translation of the above</i>:—</div>
</div>
<div class="stanza">
<div class="verse">When early morning seems but eve</div>
<div class="verse">And they that still refuse receive:</div>
<div class="verse">When speech unknown men understand;</div>
<div class="verse">And floods are crossed upon dry land.</div>
<div class="verse">Within the Sacred Walls beware</div>
<div class="verse">The Shaven Head that boasts of Hair,</div>
<div class="verse">For when the road attains the rail</div>
<div class="verse">The Pilgrim’s great attempt shall fail.</div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_55" id="Page_55">[55]</a></span>
<h2 class="nobreak">HERETICS ALL</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<div class="verse"><span class="smcap">Heretics</span> all, whoever you be,</div>
<div class="verse">In Tarbes or Nimes, or over the sea,</div>
<div class="verse">You never shall have good words from me.</div>
<div class="indent"><i>Caritas non conturbat me.</i></div>
</div>
<div class="stanza">
<div class="verse">But Catholic men that live upon wine</div>
<div class="verse">Are deep in the water, and frank, and fine;</div>
<div class="verse">Wherever I travel I find it so,</div>
<div class="indent"><i>Benedicamus Domino</i>.</div>
</div>
<div class="stanza">
<div class="verse">On childing women that are forlorn,</div>
<div class="verse">And men that sweat in nothing but scorn:</div>
<div class="verse">That is on all that ever were born,</div>
<div class="indent"><i>Miserere Domine</i>.</div>
</div>
<div class="stanza">
<div class="verse">To my poor self on my deathbed,</div>
<div class="verse">And all my dear companions dead,</div>
<div class="verse">Because of the love that I bore them,</div>
<div class="indent"><i>Dona Eis Requiem</i>.</div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_56" id="Page_56">[56]</a></span>
<h2 class="nobreak">THE DEATH AND LAST CONFESSION<br />
OF WANDERING PETER</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<div class="verse"><span class="smcap">When</span> Peter Wanderwide was young</div>
<div class="indent">He wandered everywhere he would:</div>
<div class="verse">And all that he approved was sung,</div>
<div class="indent">And most of what he saw was good.</div>
</div>
<div class="stanza">
<div class="verse">When Peter Wanderwide was thrown</div>
<div class="indent">By Death himself beyond Auxerre,</div>
<div class="verse">He chanted in heroic tone</div>
<div class="indent">To priests and people gathered there:</div>
</div>
<div class="stanza">
<div class="verse">“If all that I have loved and seen</div>
<div class="indent">Be with me on the Judgment Day,</div>
<div class="verse">I shall be saved the crowd between</div>
<div class="indent">From Satan and his foul array.</div>
</div>
<div class="stanza">
<div class="verse">“Almighty God will surely cry,</div>
<div class="indent">‘St. Michael! Who is this that stands</div>
<div class="verse">With Ireland in his dubious eye,</div>
<div class="indent">And Perigord between his hands,</div>
</div>
<div class="stanza">
<div class="verse">“‘And on his arm the stirrup-thongs,</div>
<div class="indent">And in his gait the narrow seas,</div><span class="pagenum"><a name="Page_57" id="Page_57">[57]</a></span>
<div class="verse">And in his mouth Burgundian songs,</div>
<div class="indent">But in his heart the Pyrenees?’</div>
</div>
<div class="stanza">
<div class="verse">“St. Michael then will answer right</div>
<div class="indent">(And not without angelic shame),</div>
<div class="verse">‘I seem to know his face by sight:</div>
<div class="indent">I cannot recollect his name...?’</div>
</div>
<div class="stanza">
<div class="verse">“St. Peter will befriend me then,</div>
<div class="indent">Because my name is Peter too:</div>
<div class="verse">‘I know him for the best of men</div>
<div class="indent">That ever walloped barley brew.</div>
</div>
<div class="stanza">
<div class="verse">“‘And though I did not know him well</div>
<div class="indent">And though his soul were clogged with sin,</div>
<div class="verse"><i>I</i> hold the keys of Heaven and Hell.</div>
<div class="indent">Be welcome, noble Peterkin.’</div>
</div>
<div class="stanza">
<div class="verse">“Then shall I spread my native wings</div>
<div class="indent">And tread secure the heavenly floor,</div>
<div class="verse">And tell the Blessed doubtful things</div>
<div class="indent">Of Val d’Aran and Perigord.”</div>
</div>
<div class="stanza">
<hr class="tb" />
</div>
<div class="stanza">
<div class="verse">This was the last and solemn jest</div>
<div class="indent">Of weary Peter Wanderwide.</div>
<div class="verse">He spoke it with a failing zest,</div>
<div class="indent">And having spoken it, he died.</div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_58" id="Page_58">[58]</a></span>
<h2 class="nobreak">DEDICATORY ODE</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<div class="verse"><span class="smcap">I mean</span> to write with all my strength</div>
<div class="indent">(It lately has been sadly waning),</div>
<div class="verse">A ballad of enormous length—</div>
<div class="indent">Some parts of which will need explaining.<a name="FNanchor_1_1" id="FNanchor_1_1"></a><a href="#Footnote_1_1" class="fnanchor">[1]</a></div>
</div>
<div class="stanza">
<div class="verse">Because (unlike the bulk of men</div>
<div class="indent">Who write for fame or public ends),</div>
<div class="verse">I turn a lax and fluent pen</div>
<div class="indent">To talking of my private friends.<a name="FNanchor_2_2" id="FNanchor_2_2"></a><a href="#Footnote_2_2" class="fnanchor">[2]</a></div>
</div>
<div class="stanza">
<div class="verse">For no one, in our long decline,</div>
<div class="indent">So dusty, spiteful and divided,</div>
<div class="verse">Had quite such pleasant friends as mine,</div>
<div class="indent">Or loved them half as much as I did.</div>
</div>
<div class="stanza">
<span class="pagenum"><a name="Page_59" id="Page_59">[59]</a></span>
<hr class="tb" />
</div>
<div class="stanza">
<div class="verse">The Freshman ambles down the High,</div>
<div class="indent">In love with everything he sees,</div>
<div class="verse">He notes the very Midland sky,</div>
<div class="indent">He sniffs a more than Midland breeze.</div>
</div>
<div class="stanza">
<div class="verse">“Can this be Oxford? This the place?”</div>
<div class="indent">(He cries) “of which my father said</div>
<div class="verse">The tutoring was a damned disgrace,</div>
<div class="indent">The creed a mummery, stuffed and dead?</div>
</div>
<div class="stanza">
<div class="verse">“Can it be here that Uncle Paul</div>
<div class="indent">Was driven by excessive gloom,</div>
<div class="verse">To drink and debt, and, last of all,</div>
<div class="indent">To smoking opium in his room?</div>
</div>
<div class="stanza">
<div class="verse">“Is it from here the people come,</div>
<div class="indent">Who talk so loud, and roll their eyes,</div>
<div class="verse">And stammer? How extremely rum!</div>
<div class="indent">How curious! What a great surprise.</div>
</div>
<div class="stanza">
<div class="verse">“Some influence of a nobler day</div>
<div class="indent">Than theirs (I mean than Uncle Paul’s),</div>
<div class="verse">Has roused the sleep of their decay,</div>
<div class="indent">And flecked with light their ancient walls.</div>
</div>
<div class="stanza">
<div class="verse">“O! dear undaunted boys of old,</div>
<div class="indent">Would that your names were carven here,</div><span class="pagenum"><a name="Page_60" id="Page_60">[60]</a></span>
<div class="verse">For all the world in stamps of gold,</div>
<div class="indent">That I might read them and revere.</div>
</div>
<div class="stanza">
<div class="verse">“Who wrought and handed down for me</div>
<div class="indent">This Oxford of the larger air,</div>
<div class="verse">Laughing, and full of faith, and free,</div>
<div class="indent">With youth resplendent everywhere?”</div>
</div>
<div class="stanza">
<div class="verse">Then learn: thou ill-instructed, blind,</div>
<div class="indent">Young, callow, and untutored man,</div>
<div class="verse">Their private names were ...<a name="FNanchor_3_3" id="FNanchor_3_3"></a><a href="#Footnote_3_3" class="fnanchor">[3]</a></div>
<div class="indent">Their club was called REPUBLICAN.</div>
</div>
<div class="stanza">
<hr class="tb" />
</div>
<div class="stanza">
<div class="verse">Where on their banks of light they lie,</div>
<div class="indent">The happy hills of Heaven between,</div>
<div class="verse">The Gods that rule the morning sky</div>
<div class="indent">Are not more young, nor more serene</div>
</div>
<div class="stanza">
<div class="verse">Than were the intrepid Four that stand,</div>
<div class="indent">The first who dared to live their dream.</div>
<div class="verse">And on this uncongenial land</div>
<div class="indent">To found the Abbey of Theleme.</div>
</div>
<div class="stanza">
<span class="pagenum"><a name="Page_61" id="Page_61">[61]</a></span>
<div class="verse">We kept the Rabelaisian plan:<a name="FNanchor_4_4" id="FNanchor_4_4"></a><a href="#Footnote_4_4" class="fnanchor">[4]</a></div>
<div class="indent">We dignified the dainty cloisters</div>
<div class="verse">With Natural Law, the Rights of Man,</div>
<div class="indent">Song, Stoicism, Wine and Oysters.</div>
</div>
<div class="stanza">
<div class="verse">The library was most inviting:</div>
<div class="indent">The books upon the crowded shelves</div>
<div class="verse">Were mainly of our private writing:</div>
<div class="indent">We kept a school and taught ourselves.</div>
</div>
<div class="stanza">
<div class="verse">We taught the art of writing things</div>
<div class="indent">On men we still should like to throttle:</div>
<div class="verse">And where to get the Blood of Kings</div>
<div class="indent">At only half a crown a bottle.</div>
</div>
<div class="stanza">
<hr class="tb" />
</div>
<div class="stanza">
<div class="verse">Eheu Fugaces! Postume!</div>
<div class="indent">(An old quotation out of mode);</div>
<div class="verse">My coat of dreams is stolen away</div>
<div class="indent">My youth is passing down the road.</div>
</div>
<div class="stanza">
<hr class="tb" />
</div>
<div class="stanza">
<span class="pagenum"><a name="Page_62" id="Page_62">[62]</a></span>
<div class="verse">The wealth of youth, we spent it well</div>
<div class="indent">And decently, as very few can.</div>
<div class="verse">And is it lost? I cannot tell:</div>
<div class="indent">And what is more, I doubt if you can.</div>
</div>
<div class="stanza">
<div class="verse">The question’s very much too wide,</div>
<div class="indent">And much too deep, and much too hollow,</div>
<div class="verse">And learned men on either side</div>
<div class="indent">Use arguments I cannot follow.</div>
</div>
<div class="stanza">
<div class="verse">They say that in the unchanging place,</div>
<div class="indent">Where all we loved is always dear,</div>
<div class="verse">We meet our morning face to face</div>
<div class="indent">And find at last our twentieth year....</div>
</div>
<div class="stanza">
<div class="verse">They say (and I am glad they say)</div>
<div class="indent">It is so; and it may be so:</div>
<div class="verse">It may be just the other way,</div>
<div class="indent">I cannot tell. But this I know:</div>
</div>
<div class="stanza">
<div class="verse">From quiet homes and first beginning,</div>
<div class="indent">Out to the undiscovered ends,</div>
<div class="verse">There’s nothing worth the wear of winning,</div>
<div class="indent">But laughter and the love of friends.</div>
</div>
<div class="stanza">
<hr class="tb" />
</div>
<div class="stanza">
<span class="pagenum"><a name="Page_63" id="Page_63">[63]</a></span>
<div class="verse">But something dwindles, oh! my peers,</div>
<div class="indent">And something cheats the heart and passes,</div>
<div class="verse">And Tom that meant to shake the years</div>
<div class="indent">Has come to merely rattling glasses.</div>
</div>
<div class="stanza">
<div class="verse">And He, the Father of the Flock,</div>
<div class="indent">Is keeping Burmesans in order,</div>
<div class="verse">An exile on a lonely rock</div>
<div class="indent">That overlooks the Chinese border.</div>
</div>
<div class="stanza">
<div class="verse">And One (Myself I mean—no less),</div>
<div class="indent">Ah!—will Posterity believe it—</div>
<div class="verse">Not only don’t deserve success,</div>
<div class="indent">But hasn’t managed to achieve it.</div>
</div>
<div class="stanza">
<div class="verse">Not even this peculiar town</div>
<div class="indent">Has ever fixed a friendship firmer,</div>
<div class="verse">But—one is married, one’s gone down,</div>
<div class="indent">And one’s a Don, and one’s in Burmah.</div>
</div>
<div class="stanza">
<hr class="tb" />
</div>
<div class="stanza">
<div class="verse">And oh! the days, the days, the days,</div>
<div class="indent">When all the four were off together:</div>
<div class="verse">The infinite deep of summer haze,</div>
<div class="indent">The roaring charge of autumn weather!</div>
</div>
<div class="stanza">
<hr class="tb" />
</div>
<div class="stanza">
<span class="pagenum"><a name="Page_64" id="Page_64">[64]</a></span>
<div class="verse">I will not try the reach again,</div>
<div class="indent">I will not set my sail alone,</div>
<div class="verse">To moor a boat bereft of men</div>
<div class="indent">At Yarnton’s tiny docks of stone.</div>
</div>
<div class="stanza">
<div class="verse">But I will sit beside the fire,</div>
<div class="indent">And put my hand before my eyes,</div>
<div class="verse">And trace, to fill my heart’s desire,</div>
<div class="indent">The last of all our Odysseys.</div>
</div>
<div class="stanza">
<div class="verse">The quiet evening kept her tryst:</div>
<div class="indent">Beneath an open sky we rode,</div>
<div class="verse">And passed into a wandering mist</div>
<div class="indent">Along the perfect Evenlode.</div>
</div>
<div class="stanza">
<div class="verse">The tender Evenlode that makes</div>
<div class="indent">Her meadows hush to hear the sound</div>
<div class="verse">Of waters mingling in the brakes,</div>
<div class="indent">And binds my heart to English ground.</div>
</div>
<div class="stanza">
<div class="verse">A lovely river, all alone,</div>
<div class="indent">She lingers in the hills and holds</div>
<div class="verse">A hundred little towns of stones,</div>
<div class="indent">Forgotten in the western wolds</div>
</div>
<div class="stanza">
<hr class="tb" />
</div>
<div class="stanza">
<span class="pagenum"><a name="Page_65" id="Page_65">[65]</a></span>
<div class="verse">I dare to think (though meaner powers</div>
<div class="indent">Possess our thrones, and lesser wits</div>
<div class="verse">Are drinking worser wine than ours,</div>
<div class="indent">In what’s no longer Austerlitz)</div>
</div>
<div class="stanza">
<div class="verse">That surely a tremendous ghost,</div>
<div class="indent">The brazen-lunged, the bumper-filler,</div>
<div class="verse">Still sings to an immortal toast,</div>
<div class="indent">The Misadventures of the Miller.</div>
</div>
<div class="stanza">
<div class="verse">The unending seas are hardly bar</div>
<div class="indent">To men with such a prepossession:</div>
<div class="verse">We were? Why then, by God, we <i>are</i>—</div>
<div class="indent">Order! I call the Club to session!</div>
</div>
<div class="stanza">
<div class="verse">You do retain the song we set,</div>
<div class="indent">And how it rises, trips and scans?</div>
<div class="verse">You keep the sacred memory yet,</div>
<div class="indent">Republicans? Republicans?</div>
</div>
<div class="stanza">
<div class="verse">You know the way the words were hurled,</div>
<div class="indent">To break the worst of fortune’s rub?</div>
<div class="verse">I give the toast across the world,</div>
<div class="indent">And drink it, “Gentlemen: the Club.”</div>
</div></div></div>
<h3>FOOTNOTES:</h3>
<div class="footnote">
<p><a name="Footnote_1_1" id="Footnote_1_1"></a><a href="#FNanchor_1_1"><span class="label">[1]</span></a></p>
<p>But do not think I shall explain<br />
<span class="gap">To any great extent. Believe me,</span><br />
I partly write to give you pain,<br />
<span class="gap">And if you do not like me, leave me.</span></p></div>
<div class="footnote">
<p><a name="Footnote_2_2" id="Footnote_2_2"></a><a href="#FNanchor_2_2"><span class="label">[2]</span></a></p>
<p>And least of all can you complain,<br />
<span class="gap">Reviewers, whose unholy trade is,</span><br />
To puff with all your might and main<br />
<span class="gap">Biographers of single ladies.</span></p></div>
<div class="footnote">
<p><a name="Footnote_3_3" id="Footnote_3_3"></a><a href="#FNanchor_3_3"><span class="label">[3]</span></a> Never mind.</p></div>
<div class="footnote">
<p><a name="Footnote_4_4" id="Footnote_4_4"></a><a href="#FNanchor_4_4"><span class="label">[4]</span></a></p>
<p>The plan forgot (I know not how,<br />
<span class="gap">Perhaps the Refectory filled it),</span><br />
To put a chapel in; and now<br />
<span class="gap">We’re mortgaging the rest to build it.</span></p></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_66" id="Page_66">[66]</a></span>
<h2 class="nobreak">DEDICATION ON THE GIFT OF A<br />
BOOK TO A CHILD</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<div class="verse"><span class="smcap">Child!</span> do not throw this book about!</div>
<div class="indent">Refrain from the unholy pleasure</div>
<div class="verse">Of cutting all the pictures out!</div>
<div class="indent">Preserve it as your chiefest treasure.</div>
</div>
<div class="stanza">
<div class="verse">Child, have you never heard it said</div>
<div class="indent">That you are heir to all the ages?</div>
<div class="verse">Why, then, your hands were never made</div>
<div class="indent">To tear these beautiful thick pages!</div>
</div>
<div class="stanza">
<div class="verse">Your little hands were made to take</div>
<div class="indent">The better things and leave the worse ones:</div>
<div class="verse">They also may be used to shake</div>
<div class="indent">The Massive Paws of Elder Persons.</div>
</div>
<div class="stanza">
<div class="verse">And when your prayers complete the day,</div>
<div class="indent">Darling, your little tiny hands</div>
<div class="verse">Were also made, I think, to pray</div>
<div class="indent">For men that lose their fairylands.</div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_67" id="Page_67">[67]</a></span>
<h2 class="nobreak">DEDICATION OF A CHILD’S BOOK<br />
OF IMAGINARY TALES</h2></div>
<p class="center">WHEREIN WRONG-DOERS SUFFER</p>
<div class="poetry-container">
<div class="poetry">
<div class="verse"><span class="smcap">And</span> is it true? It is not true!</div>
<div class="verse">And if it was it wouldn’t do</div>
<div class="verse">For people such as me and you,</div>
<div class="verse">Who very nearly all day long</div>
<div class="verse">Are doing something rather wrong.</div>
</div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_68" id="Page_68">[68]</a></span>
<h2 class="nobreak">HOMAGE</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<h3>I</h3>
</div>
<div class="stanza">
<div class="verse"><span class="smcap">There</span> is a light around your head</div>
<div class="verse">Which only Saints of God may wear,</div>
<div class="verse">And all the flowers on which you tread</div>
<div class="verse">In pleasaunce more than ours have fed,</div>
<div class="verse">And supped the essential air</div>
<div class="verse">Whose summer is a-pulse with music everywhere.</div>
</div>
<div class="stanza">
<h3>II</h3>
</div>
<div class="stanza">
<div class="verse">For you are younger than the mornings are</div>
<div class="verse">That in the mountains break;</div>
<div class="verse">When upland shepherds see their only star</div>
<div class="verse">Pale on the dawn, and make</div>
<div class="verse">In his surcease the hours,</div>
<div class="verse">The early hours of all their happy circuit take.</div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_69" id="Page_69">[69]</a></span>
<h2 class="nobreak">FILLE-LA-HAINE</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<div class="verse"><span class="smcap">Death</span> went into the steeple to ring,</div>
<div class="indent">And he pulled the rope and he tolled a knell.</div>
<div class="verse">Fille-la-Haine, how well you sing!</div>
<div class="indent">Why are they ringing the Passing Bell?</div>
<div class="verse"><i>Death went into the steeple to ring;</i></div>
<div class="verse"><i>Fille-la-Haine, how well you sing!</i></div>
</div>
<div class="stanza">
<div class="verse">Death went down the stream in a boat,</div>
<div class="indent">Down the river of Seine went he;</div>
<div class="verse">Fille-la-Haine had a pain in her throat,</div>
<div class="indent">Fille-la-Haine was nothing to me.</div>
<div class="verse"><i>Death went down the stream in a boat;</i></div>
<div class="verse"><i>Fille-la-Haine had a pain in her throat.</i></div>
</div>
<div class="stanza">
<div class="verse">Death went up the hill in a cart</div>
<div class="indent">(I have forgotten her lips and her laughter).</div>
<div class="verse">Fille-la-Haine was my sweetheart</div>
<div class="indent">(And all the village was following after).</div>
<div class="verse"><i>Death went up the hill in a cart.</i></div>
<div class="verse"><i>Fille-la-Haine was my sweetheart.</i></div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_70" id="Page_70">[70]</a></span>
<h2 class="nobreak">THE MOON’S FUNERAL</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<h3>I</h3>
</div>
<div class="stanza">
<div class="verse"><span class="smcap">The</span> Moon is dead. I saw her die.</div>
<div class="verse">She in a drifting cloud was drest,</div>
<div class="verse">She lay along the uncertain west,</div>
<div class="verse">A dream to see.</div>
<div class="verse">And very low she spake to me:</div>
<div class="verse">“I go where none may understand,</div>
<div class="verse">I fade into the nameless land,</div>
<div class="verse">And there must lie perpetually.”</div>
<div class="verse">And therefore I,</div>
<div class="verse">And therefore loudly, loudly I</div>
<div class="verse">And high</div>
<div class="verse">And very piteously make cry:</div>
<div class="verse">“The Moon is dead. I saw her die.”</div>
</div>
<div class="stanza">
<h3>II</h3>
</div>
<div class="stanza">
<div class="verse">And will she never rise again?</div>
<div class="verse">The Holy Moon? Oh, never more!</div>
<div class="verse">Perhaps along the inhuman shore</div>
<div class="verse">Where pale ghosts are</div><span class="pagenum"><a name="Page_71" id="Page_71">[71]</a></span>
<div class="verse">Beyond the low lethean fen</div>
<div class="verse">She and some wide infernal star—</div>
<div class="verse">To us who loved her never more,</div>
<div class="verse">The Moon will never rise again.</div>
<div class="verse">Oh! never more in nightly sky</div>
<div class="verse">Her eye so high shall peep and pry</div>
<div class="verse">To see the great world rolling by.</div>
<div class="verse">For why?</div>
<div class="verse">The Moon is dead. I saw her die.</div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_72" id="Page_72">[72]</a></span>
<h2 class="nobreak">THE HAPPY JOURNALIST</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<div class="verse"><span class="smcap">I love</span> to walk about at night</div>
<div class="indent">By nasty lanes and corners foul,</div>
<div class="verse">All shielded from the unfriendly light</div>
<div class="indent">And independent as the owl.</div>
</div>
<div class="stanza">
<div class="verse">By dirty grates I love to lurk;</div>
<div class="indent">I often stoop to take a squint</div>
<div class="verse">At printers working at their work.</div>
<div class="indent">I muse upon the rot they print.</div>
</div>
<div class="stanza">
<div class="verse">The beggars please me, and the mud:</div>
<div class="indent">The editors beneath their lamps</div>
<div class="verse">As—Mr. Howl demanding blood,</div>
<div class="indent">And Lord Retender stealing stamps,</div>
</div>
<div class="stanza">
<div class="verse">And Mr. Bing instructing liars,</div>
<div class="indent">His elder son composing trash;</div>
<div class="verse">Beaufort (whose real name is Meyers)</div>
<div class="indent">Refusing anything but cash.</div>
</div>
<div class="stanza">
<span class="pagenum"><a name="Page_73" id="Page_73">[73]</a></span>
<div class="verse">I like to think of Mr. Meyers,</div>
<div class="indent">I like to think of Mr. Bing.</div>
<div class="verse">I like to think about the liars:</div>
<div class="indent">It pleases me, that sort of thing.</div>
</div>
<div class="stanza">
<div class="verse">Policemen speak to me, but I,</div>
<div class="indent">Remembering my civic rights,</div>
<div class="verse">Neglect them and do not reply.</div>
<div class="indent">I love to walk about at nights!</div>
</div>
<div class="stanza">
<div class="verse">At twenty-five to four I bunch</div>
<div class="indent">Across a cab I can’t afford.</div>
<div class="verse">I ring for breakfast after lunch.</div>
<div class="indent">I am as happy as a lord!</div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_74" id="Page_74">[74]</a></span>
<h2 class="nobreak">LINES TO A DON</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<div class="verse"><span class="smcap">Remote</span> and ineffectual Don</div>
<div class="verse">That dared attack my Chesterton,</div>
<div class="verse">With that poor weapon, half-impelled,</div>
<div class="verse">Unlearnt, unsteady, hardly held,</div>
<div class="verse">Unworthy for a tilt with men—</div>
<div class="verse">Your quavering and corroded pen;</div>
<div class="verse">Don poor at Bed and worse at Table,</div>
<div class="verse">Don pinched, Don starved, Don miserable;</div>
<div class="verse">Don stuttering, Don with roving eyes,</div>
<div class="verse">Don nervous, Don of crudities;</div>
<div class="verse">Don clerical, Don ordinary,</div>
<div class="verse">Don self-absorbed and solitary;</div>
<div class="verse">Don here-and-there, Don epileptic;</div>
<div class="verse">Don puffed and empty, Don dyspeptic;</div>
<div class="verse">Don middle-class, Don sycophantic,</div>
<div class="verse">Don dull, Don brutish, Don pedantic;</div>
<div class="verse">Don hypocritical, Don bad,</div>
<div class="verse">Don furtive, Don three-quarters mad;</div>
<div class="verse">Don (since a man must make an end),</div>
<div class="verse">Don that shall never be my friend.</div>
</div>
<div class="stanza">
<hr class="tb" />
</div>
<div class="stanza">
<span class="pagenum"><a name="Page_75" id="Page_75">[75]</a></span>
<div class="verse">Don different from those regal Dons!</div>
<div class="verse">With hearts of gold and lungs of bronze,</div>
<div class="verse">Who shout and bang and roar and bawl</div>
<div class="verse">The Absolute across the hall,</div>
<div class="verse">Or sail in amply bellowing gown</div>
<div class="verse">Enormous through the Sacred Town,</div>
<div class="verse">Bearing from College to their homes</div>
<div class="verse">Deep cargoes of gigantic tomes;</div>
<div class="verse">Dons admirable! Dons of Might!</div>
<div class="verse">Uprising on my inward sight</div>
<div class="verse">Compact of ancient tales, and port</div>
<div class="verse">And sleep—and learning of a sort.</div>
<div class="verse">Dons English, worthy of the land;</div>
<div class="verse">Dons rooted; Dons that understand.</div>
<div class="verse">Good Dons perpetual that remain</div>
<div class="verse">A landmark, walling in the plain—</div>
<div class="verse">The horizon of my memories—</div>
<div class="verse">Like large and comfortable trees.</div>
</div>
<div class="stanza">
<hr class="tb" />
</div>
<div class="stanza">
<div class="verse">Don very much apart from these,</div>
<div class="verse">Thou scapegoat Don, thou Don devoted,</div>
<div class="verse">Don to thine own damnation quoted,</div>
<div class="verse">Perplexed to find thy trivial name</div>
<div class="verse">Reared in my verse to lasting shame.</div>
<div class="verse">Don dreadful, rasping Don and wearing,</div><span class="pagenum"><a name="Page_76" id="Page_76">[76]</a></span>
<div class="verse">Repulsive Don—Don past all bearing.</div>
<div class="verse">Don of the cold and doubtful breath,</div>
<div class="verse">Don despicable, Don of death;</div>
<div class="verse">Don nasty, skimpy, silent, level;</div>
<div class="verse">Don evil; Don that serves the devil.</div>
<div class="verse">Don ugly—that makes fifty lines.</div>
<div class="verse">There is a Canon which confines</div>
<div class="verse">A Rhymed Octosyllabic Curse</div>
<div class="verse">If written in Iambic Verse</div>
<div class="verse">To fifty lines. I never cut;</div>
<div class="verse">I far prefer to end it—but</div>
<div class="verse">Believe me I shall soon return.</div>
<div class="verse">My fires are banked, yet still they burn</div>
<div class="verse">To write some more about the Don</div>
<div class="verse">That dared attack my Chesterton.</div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_77" id="Page_77">[77]</a></span>
<h2 class="nobreak">NEWDIGATE POEM</h2></div>
<div class="hangingindent">
<blockquote>
<p>A PRIZE POEM SUBMITTED BY MR. LAMBKIN OF
BURFORD TO THE EXAMINERS OF THE UNIVERSITY
OF OXFORD ON THE PRESCRIBED POETIC
THEME SET BY THEM IN 1893, “THE BENEFITS
OF THE ELECTRIC LIGHT”</p></blockquote></div>
<div class="poetry-container">
<div class="poetry">
<div class="indent"><span class="smcap">Hail,</span> Happy Muse, and touch the tuneful string!</div>
<div class="verse">The benefits conferred by Science<a name="FNanchor_1_5" id="FNanchor_1_5"></a><a href="#Footnote_1_5" class="fnanchor">[1]</a> I sing.</div>
<div class="indent">Under the kind Examiners’ direction<a name="FNanchor_2_6" id="FNanchor_2_6"></a><a href="#Footnote_2_6" class="fnanchor">[2]</a></div>
<div class="verse">I only write about them in connection</div>
<div class="verse">With benefits which the Electric Light</div>
<div class="verse">Confers on us; especially at night.</div>
<div class="verse">These are my theme, of these my song shall rise.</div>
<div class="verse">My lofty head shall swell to strike the skies.<a name="FNanchor_3_7" id="FNanchor_3_7"></a><a href="#Footnote_3_7" class="fnanchor">[3]</a></div>
<div class="verse">And tears of hopeless love bedew the maiden’s eyes.</div>
<div class="indent">Descend, O Muse, from thy divine abode,</div><span class="pagenum"><a name="Page_78" id="Page_78">[78]</a></span>
<div class="indent">To Osney, on the Seven Bridges Road;</div>
<div class="verse">For under Osney’s solitary shade</div>
<div class="verse">The bulk of the Electric Light is made.</div>
<div class="verse">Here are the works;—from hence the current flows</div>
<div class="verse">Which (so the Company’s prospectus goes)</div>
<div class="indent">Can furnish to Subscribers hour by hour</div>
<div class="verse">No less than sixteen thousand candle power,<a name="FNanchor_4_8" id="FNanchor_4_8"></a><a href="#Footnote_4_8" class="fnanchor">[4]</a></div>
<div class="verse">All at a thousand volts. (It is essential</div>
<div class="verse">To keep the current at this high potential</div>
<div class="verse">In spite of the considerable expense.)</div>
<div class="indent">The Energy developed represents,</div>
<div class="verse">Expressed in foot-tons, the united forces</div>
<div class="verse">Of fifteen elephants and forty horses.</div>
<div class="verse">But shall my scientific detail thus</div>
<div class="verse">Clip the dear wings of Buoyant Pegasus?</div>
<div class="indent">Shall pure statistics jar upon the ear</div>
<div class="verse">That pants for Lyric accents loud and clear?</div>
<div class="verse">Shall I describe the complex Dynamo</div>
<div class="verse">Or write about its Commutator? No!</div>
<div class="indent">To happier fields I lead my wanton pen,</div>
<div class="verse">The proper study of mankind is men.</div>
<div class="indent">Awake, my Muse! Portray the pleasing sight</div><span class="pagenum"><a name="Page_79" id="Page_79">[79]</a></span>
<div class="verse">That meets us where they make Electric Light.</div>
<div class="indent">Behold the Electrician where he stands:</div>
<div class="verse">Soot, oil, and verdigris are on his hands;</div>
<div class="verse">Large spots of grease defile his dirty clothes,</div>
<div class="verse">The while his conversation drips with oaths.</div>
<div class="verse">Shall such a being perish in its youth?</div>
<div class="verse">Alas! it is indeed the fatal truth.</div>
<div class="verse">In that dull brain, beneath that hair unkempt,</div>
<div class="verse">Familiarity has bred contempt.</div>
<div class="verse">We warn him of the gesture all too late:</div>
<div class="verse">Oh, Heartless Jove! Oh, Adamantine Fate!</div>
<div class="indent">Some random touch—a hand’s imprudent slip—</div>
<div class="verse">The Terminals—a flash—a sound like “Zip!”</div>
<div class="verse">A smell of burning fills the started Air—</div>
<div class="verse">The Electrician is no longer there!</div>
<div class="indent">But let us turn with true Artistic scorn</div>
<div class="verse">From facts funereal and from views forlorn</div>
<div class="verse">Of Erebus and Blackest midnight born.<a name="FNanchor_5_9" id="FNanchor_5_9"></a><a href="#Footnote_5_9" class="fnanchor">[5]</a></div>
<div class="indent">Arouse thee, Muse! and chaunt in accents rich</div>
<div class="verse">The interesting processes by which</div>
<div class="verse">The Electricity is passed along:</div>
<div class="verse">These are my theme: to these I bend my song.</div>
<div class="indent">It runs encased in wood or porous brick</div>
<div class="verse">Through copper wires two millimetres thick,</div>
<div class="verse">And insulated on their dangerous mission</div><span class="pagenum"><a name="Page_80" id="Page_80">[80]</a></span>
<div class="verse">By indiarubber, silk, or composition.</div>
<div class="verse">Here you may put with critical felicity</div>
<div class="verse">The following question: “What is Electricity?”</div>
<div class="indent">“Molecular Activity,” say some,</div>
<div class="verse">Others when asked say nothing, and are dumb.</div>
<div class="verse">Whatever be its nature, this is clear:</div>
<div class="verse">The rapid current checked in its career,</div>
<div class="verse">Baulked in its race and halted in its course<a name="FNanchor_6_10" id="FNanchor_6_10"></a><a href="#Footnote_6_10" class="fnanchor">[6]</a></div>
<div class="verse">Transforms to heat and light its latent force:</div>
<div class="indent">It needs no pedant in the lecturer’s chair</div>
<div class="verse">To prove that light and heat are present there.</div>
<div class="verse">The pear-shaped vacuum globe, I understand,</div>
<div class="verse">Is far too hot to fondle with the hand.</div>
<div class="verse">While, as is patent to the meanest sight,</div>
<div class="verse">The carbon filament is very bright.</div>
<div class="indent">As for the lights they hang about the town,</div>
<div class="verse">Some praise them highly, others run them down.</div>
<div class="verse">This system (technically called the Arc),</div>
<div class="verse">Makes some passages too light, others too dark.</div>
<div class="indent">But in the house the soft and constant rays</div>
<div class="verse">Have always met with universal praise.</div><span class="pagenum"><a name="Page_81" id="Page_81">[81]</a></span>
<div class="indent">For instance: if you want to read in bed</div>
<div class="verse">No candle burns beside your curtain’s head,</div>
<div class="verse">Far from some distant corner of the room</div>
<div class="verse">The incandescent lamp dispels the gloom,</div>
<div class="indent">And with the largest print need hardly try</div>
<div class="verse">The powers of any young and vigorous eye.</div>
<div class="indent">Aroint thee, Muse! Inspired the poet sings!</div>
<div class="verse">I cannot help observing future things!</div>
<div class="verse">Life is a vale, its paths are dark and rough</div>
<div class="verse">Only because we do not know enough:</div>
<div class="verse">When Science has discovered something more</div>
<div class="verse">We shall be happier than we were before.</div>
<div class="indent">Hail, Britain, Mistress of the Azure Main,</div>
<div class="verse">Ten thousand Fleets sweep over thee in vain!</div>
<div class="verse">Hail, Mighty Mother of the Brave and Free,</div>
<div class="verse">That beat Napoleon, and gave birth to me!</div>
<div class="verse">Thou that canst wrap in thine emblazoned robe</div>
<div class="verse">One quarter of the habitable globe.</div>
<div class="verse">Thy mountains, wafted by a favouring breeze,</div>
<div class="verse">Like mighty rocks withstand the stormy seas.</div>
<div class="indent">Thou art a Christian Commonwealth; and yet</div>
<div class="verse">Be thou not all unthankful—nor forget</div>
<div class="verse">As thou exultest in Imperial Might</div>
<div class="verse">The Benefits of the Electric Light.</div>
</div></div>
<h3>FOOTNOTES:</h3>
<div class="footnote">
<p><a name="Footnote_1_5" id="Footnote_1_5"></a><a href="#FNanchor_1_5"><span class="label">[1]</span></a> To be pronounced as a monosyllable in the Imperial fashion.</p></div>
<div class="footnote">
<p><a name="Footnote_2_6" id="Footnote_2_6"></a><a href="#FNanchor_2_6"><span class="label">[2]</span></a> Mr. Punt, Mr. Howl, and Mr. Grewcock (now, alas, deceased).</p></div>
<div class="footnote">
<p><a name="Footnote_3_7" id="Footnote_3_7"></a><a href="#FNanchor_3_7"><span class="label">[3]</span></a> A neat rendering of “Sublimi feriam sidera vertice.”</p></div>
<div class="footnote">
<p><a name="Footnote_4_8" id="Footnote_4_8"></a><a href="#FNanchor_4_8"><span class="label">[4]</span></a> To the Examiners: These facts (of which I guarantee the
accuracy) were given me by a Director.</p></div>
<div class="footnote">
<p><a name="Footnote_5_9" id="Footnote_5_9"></a><a href="#FNanchor_5_9"><span class="label">[5]</span></a> A reminiscence of Milton: “Fas est et ab hoste doceri.”</p></div>
<div class="footnote">
<p><a name="Footnote_6_10" id="Footnote_6_10"></a><a href="#FNanchor_6_10"><span class="label">[6]</span></a> Lambkin told me he regretted this line, which was for the
sake of Rhyme. He would willingly have replaced it, but to
his last day could construct no substitute.</p></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_82" id="Page_82">[82]</a></span>
<h2 class="nobreak">THE YELLOW MUSTARD</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<div class="verse"><span class="smcap">Oh!</span> ye that prink it to and fro,</div>
<div class="verse">In pointed flounce and furbelow,</div>
<div class="verse">What have ye known, what can ye know</div>
<div class="verse">That have not seen the mustard grow?</div>
</div>
<div class="stanza">
<div class="verse">The yellow mustard is no less</div>
<div class="verse">Than God’s good gift to loneliness;</div>
<div class="verse">And he was sent in gorgeous press</div>
<div class="verse">To jangle keys at my distress.</div>
</div>
<div class="stanza">
<div class="verse">I heard the throstle call again,</div>
<div class="verse">Come hither, Pain! come hither, Pain!</div>
<div class="verse">Till all my shameless feet were fain</div>
<div class="verse">To wander through the summer rain.</div>
</div>
<div class="stanza">
<div class="verse">And far apart from human place,</div>
<div class="verse">And flaming like a vast disgrace,</div>
<div class="verse">There struck me blinding in the face</div>
<div class="verse">The livery of the mustard race.</div>
</div>
<div class="stanza">
<hr class="tb" />
</div>
<div class="stanza">
<div class="verse">To see the yellow mustard grow</div>
<div class="verse">Beyond the town, above, below;</div>
<div class="verse">Beyond the purple houses, oh!</div>
<div class="verse">To see the yellow mustard grow!</div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_83" id="Page_83">[83]</a></span>
<h2 class="nobreak">ON HYGIENE</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="verse"><span class="smcap">Of</span> old when folk lay sick and sorely tried,</div>
<div class="verse">The doctors gave them medicine and they died.</div>
<div class="verse">Here is an happier age, for now we know</div>
<div class="verse">Both how to make men sick and keep them so.</div>
</div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_84" id="Page_84">[84]</a></span>
<h2 class="nobreak">THE FALSE HEART</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<div class="verse"><span class="smcap">I said</span> to Heart, “How goes it?” Heart replied:</div>
<div class="verse">“Right as a Ribstone Pippin!” But it lied.</div>
</div>
<div class="stanza">
<hr class="tb" />
</div>
<div class="stanza">
<div class="verse">A critic said large margins did not please him,</div>
<div class="verse">I therefore printed just two lines, to tease him.</div>
<div class="verse">And if he still complains of what I’ve done,</div>
<div class="verse">In my next book I’ll fill a page with <small>ONE</small>.</div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_85" id="Page_85">[85]</a></span>
<h2 class="nobreak">SONNET UPON GOD, THE WINE<br />
GIVER</h2></div>
<p class="center">(<i>For Easter Sunday</i>)</p>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<div class="verse"><span class="smcap">Thought</span> Man made wine, I think God made it, too;</div>
<div class="verse">God making all things, made Man made good wine.</div>
<div class="verse">He taught him how the little tendrils twine</div>
<div class="verse">About the stakes of labor close and true.</div>
<div class="verse">Then next, with intimate prophetic laughter,</div>
<div class="verse">He taught the Man, in His own image blest,</div>
<div class="verse">To pluck and wagon and to—all the rest!</div>
<div class="verse">To tread the grape and work his vintage after.</div>
</div>
<div class="stanza">
<div class="verse">So did God make us, making good wine makers;</div>
<div class="verse">So did He order us to rule the field</div>
<div class="verse">And now by God are we not only bakers;</div>
<div class="verse">But winners also sacraments to yield;</div>
<div class="verse">Yet most of all strong lovers, Praised be God!</div>
<div class="verse">Who taught us how the wine-press should be trod!</div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_86" id="Page_86">[86]</a></span>
<h2 class="nobreak">THE POLITICIAN<br />
OR THE IRISH EARLDOM</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<div class="verse"><span class="smcap">A strong</span> and striking Personality,</div>
<div class="indent">Worth several hundred thousand pounds—</div>
<div class="verse">Of strict political Morality—</div>
<div class="indent">Was walking in his park-like Grounds;</div>
<div class="verse">When, just as these began to pall on him</div>
<div class="indent">(I mean the Trees, and Things like that),</div>
<div class="verse">A Person who had come to call on him</div>
<div class="indent">Approached him, taking off his Hat.</div>
</div>
<div class="stanza">
<div class="verse">He said, with singular veracity:</div>
<div class="indent">“I serve our Sea-girt Mother-Land</div>
<div class="verse">In no conspicuous capacity.</div>
<div class="indent">I am but an Attorney; and</div>
<div class="verse">I do a little elementary</div>
<div class="indent">Negotiation, now and then,</div>
<div class="verse">As Agent for a Parliamentary</div>
<div class="indent">Division of the Town of N....</div>
</div>
<div class="stanza">
<div class="verse">“Merely as one of the Electorate—</div>
<div class="indent">A member of the Commonweal—</div><span class="pagenum"><a name="Page_87" id="Page_87">[87]</a></span>
<div class="verse">Before completing my Directorate,</div>
<div class="indent">I want to know the way you feel</div>
<div class="verse">On matters more or less debatable;</div>
<div class="indent">As—whether our Imperial Pride</div>
<div class="verse">Can treat as taxable or rateable</div>
<div class="indent">The Gardens of ...” His host replied:</div>
</div>
<div class="stanza">
<div class="verse">“The Ravages of Inebriety</div>
<div class="indent">(Alas! increasing day by day!)</div>
<div class="verse">Are undermining all Society.</div>
<div class="indent">I do not hesitate to say</div>
<div class="verse">My country squanders her abilities,</div>
<div class="indent">Observe how Montenegro treats</div>
<div class="verse">Her Educational Facilities....</div>
<div class="indent">... As to the African defeats,</div>
</div>
<div class="stanza">
<div class="verse">“I bitterly deplored their frequency;</div>
<div class="indent">On Canada we are agreed,</div>
<div class="verse">The Laws protecting Public Decency</div>
<div class="indent">Are very, very lax indeed!</div>
<div class="verse">The Views of most of the Nobility</div>
<div class="indent">Are very much the same as mine,</div>
<div class="verse">On Thingumbob’s eligibility ...</div>
<div class="indent">I trust that you remain to dine?”</div>
</div>
<div class="stanza">
<span class="pagenum"><a name="Page_88" id="Page_88">[88]</a></span>
<div class="verse">His Lordship pressed with importunity,</div>
<div class="indent">As rarely he had pressed before.</div>
</div>
<div class="stanza">
<hr class="tb" />
</div>
<div class="stanza">
<div class="verse">It gave them both an opportunity</div>
<div class="indent">To know each other’s value more.</div>
</div></div></div>
<hr class="chap" />
<div class="chapter">
<span class="pagenum"><a name="Page_89" id="Page_89">[89]</a></span>
<h2 class="nobreak">SHORT BALLAD AND<br />
POSTSCRIPT ON CONSOLS</h2></div>
<div class="poetry-container">
<div class="poetry">
<div class="stanza">
<h3>I</h3>
</div>
<div class="stanza">
<div class="verse"><span class="smcap">Gigantic</span> daughter of the West</div>
<div class="indent">(The phrase is Tennysonian), who</div>
<div class="verse">From this unconquerable breast</div>
<div class="indent">The vigorous milk of Freedom drew</div>
<div class="verse">—We gave it freely—shall the crest</div>
<div class="indent">Of Empire in your keeping true,</div>
<div class="verse">Shall England—I forget the rest,</div>
<div class="indent">But Consols are at 82.</div>
</div>
<div class="stanza">
<h3>II</h3>
</div>
<div class="stanza">
<div class="verse">Now why should any one invest,</div>
<div class="indent">As even City people do</div>
<div class="verse">(His Lordship did among the rest),</div>
<div class="indent">When stocks—but what is that to you?</div>
<div class="verse">And then, who ever could have guessed</div>
<div class="indent">About the guns—and horses too!—</div>
<div class="verse">Besides, they knew their business best,</div>
<div class="indent">And Consols are at 82.</div>
</div>
<div class="stanza">
<span class="pagenum"><a name="Page_90" id="Page_90">[90]</a></span>
<h3>III</h3>
</div>
<div class="stanza">
<div class="verse">It serves no purpose to protest,</div>
<div class="indent">It isn’t manners to halloo</div>
<div class="verse">About the way the thing was messed—</div>
<div class="indent">Or vaguely call a man a Jew.</div>
<div class="verse">A gentleman who cannot jest</div>
<div class="indent">Remarked that we should muddle through</div>
<div class="verse">(The continent was much impressed),</div>
<div class="indent">And Consols are at 82.</div>
</div>
<div class="stanza">
<div class="center"><i>Envoi</i></div>
</div>
<div class="stanza">
<div class="verse">And, Botha lay at Pilgrim’s Rest</div>
<div class="indent">And Myberg in the Great Karroo</div>
<div class="verse">(A desert to the south and west),</div>
<div class="indent">And Consols are at 82.</div>
</div>
<div class="stanza">
<div class="center"><i>Postscript</i></div>
</div>
<div class="stanza">
<div class="verse">Permit me—if you do not mind—</div>
<div class="indent">To add it would be screaming fun</div>
<div class="verse">If, after printing this, I find</div>
<div class="indent">Them after all at 81.</div>
</div>
<div class="stanza">
<span class="pagenum"><a name="Page_91" id="Page_91">[91]</a></span>
<div class="verse">Or 70 or 63,</div>
<div class="indent">Or 55 or 44,</div>
<div class="verse">Or 39 and going free,</div>
<div class="indent">Or 28—or even more.</div>
</div>
<div class="stanza">
<div class="verse">No matter—take no more advice</div>
<div class="indent">From doubtful and intriguing men.</div>
<div class="verse">Refuse the stuff at any price,</div>
<div class="indent">And slowly watch them fall to 10.</div>
</div>
<div class="stanza">
<div class="verse">Meanwhile I feel a certain zest</div>
<div class="indent">In writing once again the new</div>
<div class="verse">Refrain that all is for the best,</div>
<div class="indent">And Consols are at 82.</div>
</div></div></div>
<hr class="chap" />
<div class="transnote">
<p class="ph2">TRANSCRIBER’S NOTES:</p>
<p>Obvious typographical errors have been corrected.</p>
<p>The cover image for this eBook was created by the transcriber and is entered into the public domain.</p>
</div>
<div>*** END OF THE PROJECT GUTENBERG EBOOK 60487 ***</div>
</body>
</html>
|