Creating the TOC and Author Pages

Creating the volume table of contents (TOC) is a good place to start the publication process; its existence assures that, if anything is wrong, you’ll discover it sooner rather than later. This is also a good time to create RC author pages for any contributors or historical authors that don’t already have pages at RC.

Basic TOC / index page

Creating a simple TOC is fairly simple on the new RC site since it involves no coding; a Drupal view identifies, through the “parent resource” field, all the essays that belong to a given TOC page and presents them there.

Here are the steps to create a simple TOC (also known as an “index” or “parent resource”) page:

  1. Navigate to the “Content” tab of the Drupal admin menu.
  2. Click the blue “+ Add Content” button and choose the relevant “Publication” content type. E.g., for a Praxis volume, you’ll choose “Praxis Publication.”
  3. Immediately scroll to the bottom of the “Edit” page that appears and un-check the “Published” box to unpublish the TOC page. This will prevent it from populating on the front page and main content page views.
  4. Fill in the rest of the required metadata on this page:
    • Provide the Volume’s title; its editors and/or historical author, as appropriate; its technical editor (you); its date published on RC; the volume metadata tags provided by the volume editors; and, for an edition, the original publication date.
    • Upload the volume’s banner image. (You’ll need to create one, if you haven’t already; see the Media Sourcing for more info.)
    • If you’re letting Drupal auto-generate the TOC, leave the “body” field blank.
    • The “description” field provides a brief volume description that sits beneath the volume banner image and above the individual essay links. Use the volume abstract provided by the volume editors, preferably no more than ~100 words; edit it for length and clarity, if needed.
    • Finally, manually enforce the correct URL alias for the TOC page (at the top right). For consistency, this alias should exactly reflect the directory structure of the FTP; it will always be something like /editions/frankenstein.
  5. Save the page. If essay links will be autogenerated, you’re done; as you begin importing the essays themselves, they should begin populating on the TOC.
  6. If the items in the TOC need to appear in a specific order (which is usually the case), simply specify this order in the “Index Page Order” field on each essay.

Creating and updating author bio pages

Many of the contributors to a new production volume or edition are likely to already have author pages on the site, but some likely will not. In rare cases, this may be true of historical (primary) authors as well. Let’s begin with this important distinction; on the RC site:

  • Contemporary authors (critics) are called “Contributors,” while
  • Historical authors (Romantic poetcs, etc.) are called “Primary Authors.”

These are represented by two different Drupal content types (Structure / Content types).

Upon receipt of a volume, the volume editor(s) should include current bios for all contributors (if this isn’t the case, reach out to the editors for all bios). There are two possibilities here: you’ll either create new contributor pages or updating existing ones.

  • If a contributor already has a bio on the site, you should replace it with the new one. The easiest way to do so is to use the site’s search function; if an author’s page appears, simply click the contextual “Edit” link and paste in the new bio.
  • If a contributor doesn’t have an RC page, create one. Simply navigate to Drupal’s “Content” menu, click “+Add Content,” then select “Contributor” and populate all available fields.

To create a page for a new “primary” (historical) author, simply follow the steps above but select “Primary Author” as the content type. For new primary authors, reach out to volume editors to see if they’d like to write a bio. If not, source a bio from open-source online content. Also upload an image of the historical author that is available in the public domain.


Custom TOC / index page

For more complex editions, it becomes necessary to bypass the view that auto-generates the TOC. This will be true for any volume that has multiple hierarchies of content organization or different types of content that need to be separated.

Custom TOC page creation requires manual coding of the HTML to present the page. For the sake of clarity, RC editors have installed Bootstrap functionality, which provides CSS classes for easy formatting of page entities such as accordion menus, tables, and the like.

Before proceeding with a custom TOC, you’ll need to create a new TOC page as described above but alter its layout so that it no longer contains the view that autogenerates TOC titles. This process requires familiarity with Drupal’s Layout Builder function; see the Layout Builder section of the Drupal Components page in the Technical Documentation before continuing.

From the page view, click “Layout” (or, from the “Edit” view, just select the “Layout” tab). Ensure that the dialog says that “You are editing the layout for this [Section] Publication content item” and not the template for all content items.

NOTE: Always check to ensure you’re changing the correct layout: editing the template for all items of a specific content type can be extremely useful, but it can dramatically change the appearance of an entire content type. Edit layouts with intention and care!

Layout Builder snapshot, removing "toc" views block

As shown in the screenshot, find the “views” block called “Editions-toc” (or, for a Praxis volume, “Praxis-toc”). Click the pen icon on the right of the grid and select “Remove block.” Save the layout, and you’ll find that the volume “pieces” will no longer auto-generate on the TOC page.

Feel free to get creative with the encoding of the TOC, always prioritizing the usability of any layout you decide on. For reference, here’s the code for a particularly complicated TOC which can be employed as a template; this HTML produces the TOC for the Collected Writings of Robert Bloomfield edition.

This custom TOC liberally employs Bootstrap components, which are discussed in the Drupal Assets documentation. Available Bootstrap components, styles, and plugins, as well as documentation on how to use them, can be found on the Bootstrap site.


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
<HTML>
  <div id="IndexContent">

    <h1 class="indent0">Contents</h1>
    &nbsp;
    <h4><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.about.html" title="About This Edition">About This Edition</a></h4>
    <div aria-multiselectable="true" class="panel-group" id="accordion" role="tablist">
      <div class="panel panel-default">
        <div class="panel-heading" id="headingOne" role="tab">
          <h4 class="panel-title"><a aria-controls="collapseOne" aria-expanded="false" data-parent="#accordion" data-toggle="collapse" href="#collapseOne" role="button">Introductory Materials</a></h4>
        </div>
        <div aria-labelledby="headingOne" class="panel-collapse collapse in" id="collapseOne" role="tabpanel">
          <div class="panel-body"><a class="link_ref" href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.2Prelims.html#prelim-preface" title="Preface">Preface</a></div>
          <div class="panel-body"><a class="link_ref" href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.2Prelims.html#prelim-chrono" title="Chronology of Bloomfield’s Life">Chronology of Bloomfield’s Life</a></div>
          <div class="panel-body"><a class="link_ref" href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.2Prelims.html#prelim-reading" title="Further Reading">Further Reading</a></div>
          <div class="panel-body"><a class="link_ref" href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.2Prelims.html#prelim-note" title="A Note on the Text">A Note on the Text</a></div>
        </div>
      </div>
    </div>

    <h2>Individual Poems</h2>

    <table class="table">
      <thead>
        <tr>
          <th scope="col" style="width:10%">Year</th>
          <th scope="col">Title</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <th scope="row">1786</th>
          <td><h4><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.3VillageGirl.html" title="‘A Village Girl’ (1786)">‘A Village Girl’</a></h4></td>
        </tr>
        <tr>
          <th scope="row">1786</th>
          <td><h4><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.4HarvestScene.html" title="‘An Harvest Scene’ (1786)">‘An Harvest Scene’</a></h4></td>
        </tr>
        <tr>
          <th scope="row">1786</th>
          <td><h4><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.5SoldiersReturn.html" title="‘The Soldier’s Return’ (1786)">‘The Soldier’s Return’</a></h4></td>
        </tr>
        <tr>
          <th scope="row">1789</th>
          <td><h4><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.6Elegy.html" title="‘Elegy’ (1789)">‘Elegy’</a></h4></td>
        </tr>
        <tr>
          <th scope="row">1791</th>
          <td><h4><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.7LaunchBoyne.html" title="‘On Seeing the Launch of the Boyne’ (1791)">‘On Seeing the Launch of the Boyne’</a></h4></td>
        </tr>
        <tr>
          <th scope="row">1800</th>
          <td><h4><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.9ToHisMother.html" title="‘To His Mother, with a Copy of The Farmer’s Boy’ (1800)">‘To His Mother, with a Copy of <em>The Farmer’s Boy</em></a></h4></td>
        </tr>
        <tr>
          <th scope="row">1800</th>
          <td><h4><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.10NeighbourlyResolution.html" title="‘A Neighbourly Resolution’ (1800)">‘A Neighbourly Resolution’</a></h4></td>
        </tr>
        <tr>
          <th scope="row">1800/1</th>
          <td><h4><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.12GeneralLoyd.html" title="‘To General Loyd. The Humble Petition of the Old Elms at the West End of Woolwich Barracks’ (1800/1)">‘To General Loyd. The Humble Petition of the Old Elms at the West End of Woolwich Barracks’</a></h4></td>
        </tr>
        <tr>
          <th scope="row">1801</th>
          <td><h4><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.13HighlandDrover.html" title="‘Song for a Highland Drover, returning from England’ (1801)">‘Song for a Highland Drover, returning from England’</a></h4></td>
        </tr>
        <tr>
          <th scope="row">1801/2</th>
          <td><h4><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.14EmmasKid.html" title="‘Emma’s Kid’ (1801/2)">‘Emma’s Kid’</a></h4></td>
        </tr>
        <tr>
          <th scope="row">1801/2</th>
          <td><h4><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.16MarysEveningSigh.html" title="‘Mary’s Evening Sigh’ (1801/2)">‘Mary’s Evening Sigh’</a></h4></td>
        </tr>
        <tr>
          <th scope="row">1803</th>
          <td><h4><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.17SongDrJenner.html" title="‘Song, Sung By Mr. Bloomfield at the Anniversary of Doctor Jenner’s Birth-Day, 1803’">‘Song, Sung By Mr. Bloomfield at the Anniversary of Doctor Jenner’s Birth-Day, 1803’</a></h4></td>
        </tr>
        <tr>
          <th scope="row">1804</th>
          <td><h4><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.19ToHisWife.html" title="‘To His Wife’ (1804)">‘To His Wife’</a></h4></td>
        </tr>
        <tr>
          <th scope="row">1805</th>
          <td><h4><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.20FirstViewofSea.html" title="‘A First View of the Sea’ (1805)">‘A First View of the Sea’</a></h4></td>
        </tr>
        <tr>
          <th scope="row">1806</th>
          <td><h4><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.22ToASpindle.html" title="‘To a Spindle’ (1806)">‘To a Spindle’</a></h4></td>
        </tr>
        <tr>
          <th scope="row">1806</th>
          <td><h4><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.23AddressBritishChannel.html" title="‘Address to the British Channel’ (1806)">‘Address to the British Channel’</a></h4></td>
        </tr>
        <tr>
          <th scope="row">1807</th>
          <td><h4><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.24ButchersHorse.html" title="‘The Butcher’s Horse and the Bees: a Village Tragedy’ (1807)">‘The Butcher’s Horse and the Bees: a Village Tragedy’</a></h4></td>
        </tr>
        <tr>
          <th scope="row">1807</th>
          <td><h4><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.25NewsFromWorthing.html" title="‘News from Worthing, in a Letter from a Beast of Burden to her Brother Jack’ (1807)">‘News from Worthing, in a Letter from a Beast of Burden to her Brother Jack’</a></h4></td>
        </tr>
        <tr>
          <th scope="row">1808</th>
          <td><h4><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.27FiveMonths.html" title="‘Five Months I Will Getting She Married’ (1808)">‘Five Months I Will Getting She Married’</a></h4></td>
        </tr>
        <tr>
          <th scope="row"><em>c.</em>1809/10</th>
          <td><h4><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.28SentMrSharp.html" title="‘Sent to Mr. Sharp as an Apology for Not Dining With Him’ (c. 1809/10)">‘Sent to Mr. Sharp as an Apology for Not Dining With Him’</a></h4></td>
        </tr>
        <tr>
          <th scope="row">1811</th>
          <td><h4><a href="editions/wye/" title="The Banks Of Wye (1811)"><em>The Banks Of Wye</em></a></h4></td>
        </tr>
        <tr>
          <th scope="row">1811</th>
          <td><h4><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.30WordsJamesHook.html" title="Words for James Hook, Guida Di Musica (1811)">Words for James Hook, <em>Guida Di Musica</em></a></h4></td>
        </tr>
        <tr>
          <th scope="row"><em>c.</em>1812</th>
          <td><h4><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.31SongManMoon.html" title="Song [‘The man in the moon look’d down one night’] (c. 1812)">Song [‘The man in the moon look’d down one night’]</a></h4></td>
        </tr>
        <tr>
          <th scope="row">1824</th>
          <td><h4><a href="/editions/bloomfield_letters/HTML/anecdotes.html" title="Anecdotes and Observations, Reflections and Critical Remarks"><em>Anecdotes and Observations, Reflections and Critical Remarks</em></a>, from <em>The Remains of Robert Bloomfield</em></h4></td>
        </tr>
        <tr>
          <th scope="row"></th>
          <td><h4><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.39AuthorsEpitaph.html" title="[The Author’s Epitaph]">[The Author’s Epitaph]</a></h4></td>
        </tr>
      </tbody>
    </table>

<h2>Full Works</h2>
  <p><small>  (click to expand)</small></p>

    <div aria-multiselectable="true" class="panel-group" id="accordion" role="tablist">
      <div class="panel panel-default">
        <div class="panel-heading" id="headingTwo" role="tab">
        <h4 class="panel-title"><a aria-controls="collapseTwo" aria-expanded="false" class="collapsed" data-parent="#accordion" data-toggle="collapse" href="#collapseTwo" role="button"><em>The Farmer’s Boy</em> (1800)</a></h4>
        </div>
        <div aria-labelledby="headingTwo" class="panel-collapse collapse" id="collapseTwo" role="tabpanel">
        <div class="panel-body"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.8FarmersBoyPt1.html" title="Editorial Introduction">Editorial Introduction</a></div>
        <div class="panel-body"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.8FarmersBoyPt1.html#farmers-editions" title="Editions of The Farmer’s Boy">Editions of <em>The Farmer’s Boy</em></a></div>
        <div class="panel-body"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.8FarmersBoyPt2.html" title="Prefaces and Appendices">Prefaces and Appendices</a></div>
        <div class="panel-body">
          <ul class="list-group">
            <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.8FarmersBoyPt3.html" title="Spring">Spring</a></li>
            <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.8FarmersBoyPt4.html" title="Summer">Summer</a></li>
            <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.8FarmersBoyPt5.html" title="Autumn">Autumn</a></li>
            <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.8FarmersBoyPt6.html" title="Winter">Winter</a></li>
          </ul>
        </div>
        </div>
      </div>
    </div>

    <div aria-multiselectable="true" class="panel-group" id="accordion" role="tablist">
      <div class="panel panel-default">
        <div class="panel-heading" id="headingThree" role="tab">
          <h4 class="panel-title"><a aria-controls="collapseThree" aria-expanded="false" class="collapsed" data-parent="#accordion" data-toggle="collapse" href="#collapseThree" role="button"><em>To Immagination</em> (1800)</a></h4>
        </div>
        <div aria-labelledby="headingThree" class="panel-collapse collapse" id="collapseThree" role="tabpanel">
          <div class="panel-body"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.11ToImmagination.html" title="Editorial Introduction">Editorial Introduction</a></div>
          <div class="panel-body">
            <ul class="list-group">
            <li class="list-group-item"><a href="/editions/bloomfield_letters/HTML/imagination.html" title="Poem">Poem</a></li>
          </ul>
          </div>
        </div>
      </div>
    </div>

    <div aria-multiselectable="true" class="panel-group" id="accordion" role="tablist">
      <div class="panel panel-default">
        <div class="panel-heading" id="headingFour" role="tab">
        <h4 class="panel-title"><a aria-controls="collapseFour" aria-expanded="false" class="collapsed" data-parent="#accordion" data-toggle="collapse" href="#collapseFour" role="button"><em>Rural Tales, Ballads and Songs</em> (1802)</a></h4>
        </div>
        <div aria-labelledby="headingFour" class="panel-collapse collapse" id="collapseFour" role="tabpanel">
        <div class="panel-body"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.15RuralTalesPt1.html#rural-intro" title="Editorial Introduction">Editorial Introduction</a></div>
        <div class="panel-body"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.15RuralTalesPt1.html#rural-editions" title="Editions of Rural Tales">Editions of <em>Rural Tales</em></a></div>
        <div class="panel-body">
          <ul class="list-group">
            <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.15RuralTalesPt1.html#rural-preface" title="Preface (1802)">Preface (1802)</a></li>
            <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.15RuralTalesPt1.html#rural-peace" title="Peace">Peace</a></li>
            <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.8FarmersBoyPt5.html" title="Autumn">Autumn</a></li>
            <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.8FarmersBoyPt6.html" title="Winter">Winter</a></li>
            <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.15RuralTalesPt1.html#rural-preface2" title="Preface to Poems [Stereotype], Volume II">Preface to Poems [Stereotype], Volume II</a></li>
            <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.15RuralTalesPt2.html" title="Richard and Kate; or, Fair-Day: a Suffolk Ballad">Richard and Kate; or, Fair-Day: a Suffolk Ballad</a></li>
            <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.15RuralTalesPt3.html" title="Walter and Jane: or, the Poor Blacksmith: a Country Tale">Walter and Jane: or, the Poor Blacksmith: a Country Tale</a></li>
            <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.15RuralTalesPt4.html" title="The Miller’s Maid: a Tale">The Miller’s Maid: a Tale</a></li>
            <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.15RuralTalesPt5.html" title="The Widow to her Hour Glass: a Tale">The Widow to her Hour Glass: a Tale</a></li>
            <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.15RuralTalesPt6.html" title="Market-Night: a Ballad">Market-Night: a Ballad</a></li>
            <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.15RuralTalesPt7.html" title="The Fakenham Ghost: a Ballad">The Fakenham Ghost: a Ballad</a></li>
            <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.15RuralTalesPt8.html" title="The French Mariner: a Ballad">The French Mariner: a Ballad</a></li>
            <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.15RuralTalesPt9.html" title="Dolly: a Ballad">Dolly: a Ballad</a></li>
            <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.15RuralTalesPt10.html" title="Lines, Occasioned by a Visit to Whittlebury Forest, Northamptonshire, in August 1800">Lines, Occasioned by a Visit to Whittlebury Forest, Northamptonshire, in August 1800</a></li>
            <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.15RuralTalesPt11.html" title="Song for a Highland Drover Returning from England">Song for a Highland Drover Returning from England</a></li>
            <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.15RuralTalesPt12.html" title="A Word to Two Young Ladies">A Word to Two Young Ladies</a></li>
            <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.15RuralTalesPt14.html" title="Nancy: a Song">Nancy: a Song</a></li>
            <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.15RuralTalesPt15.html" title="Rosy Hannah: a Song">Rosy Hannah: a Song</a></li>
            <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.15RuralTalesPt16.html" title="Song: The Shepherd and his Dog Rover">Song: The Shepherd and his Dog Rover</a></li>
            <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.15RuralTalesPt17.html" title="Hunting Song">Hunting Song</a></li>
            <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.15RuralTalesPt18.html" title="Lucy: a Song">Lucy: a Song</a></li>
            <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.15RuralTalesPt19.html" title="Winter Song">Winter Song</a></li>
          </ul>
        </div>
        </div>
      </div>
    </div>

    <div aria-multiselectable="true" class="panel-group" id="accordion" role="tablist">
      <div class="panel panel-default">
        <div class="panel-heading" id="headingFive" role="tab">
          <h4 class="panel-title"><a aria-controls="collapseFive" aria-expanded="false" class="collapsed" data-parent="#accordion" data-toggle="collapse" href="#collapseFive" role="button"><em>Good Tidings; or, News from the Farm</em> (1804)</a></h4>
        </div>
        <div aria-labelledby="headingFive" class="panel-collapse collapse" id="collapseFive" role="tabpanel">
          <div class="panel-body"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.18GoodTidingsPt1.html" title="Editorial Introduction">Editorial Introduction</a></div>
          <div class="panel-body">
            <ul class="list-group">
            <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.18GoodTidingsPt2.html" title="[poem]">Poem</a></li>
          </ul>
          </div>
        </div>
      </div>
    </div>

  <div aria-multiselectable="true" class="panel-group" id="accordion" role="tablist">
    <div class="panel panel-default">
      <div class="panel-heading" id="headingSix" role="tab">
      <h4 class="panel-title"><a aria-controls="collapseSix" aria-expanded="false" class="collapsed" data-parent="#accordion" data-toggle="collapse" href="#collapseSix" role="button"><em>Wild Flowers; or, Pastoral and Local Poetry</em> (1806)</a></h4>
      </div>
      <div aria-labelledby="headingSix" class="panel-collapse collapse" id="collapseSix" role="tabpanel">
      <div class="panel-body"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.21WildFlowersPt1.html#wildflowers-intro" title="Editorial Introduction">Editorial Introduction</a></div>
      <div class="panel-body">
        <ul class="list-group">
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.21WildFlowersPt2.html" title="Abner and the Widow Jones: a Familiar Ballad">Abner and the Widow Jones: a Familiar Ballad</a></li>
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.21WildFlowersPt3.html" title="To My Old Oak Table">To My Old Oak Table</a></li>
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.21WildFlowersPt4.html" title="The Horkey: a Provincial Ballad">The Horkey: a Provincial Ballad</a></li>
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.21WildFlowersPt5.html" title="The Broken Crutch: a Tale">The Broken Crutch: a Tale</a></li>
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.21WildFlowersPt6.html" title="Shooter’s Hill">Shooter’s Hill</a></li>
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.21WildFlowersPt7.html" title="A Visit to Ranelagh">A Visit to Ranelagh</a></li>
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.21WildFlowersPt8.html" title="Love of the Country: Written at Clare-Hall, Herts. June 1804">Love of the Country: Written at Clare-Hall, Herts. June 1804</a></li>
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.21WildFlowersPt9.html" title="The Woodland Hallo">The Woodland Hallo</a></li>
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.21WildFlowersPt10.html" title="Barnham Water">Barnham Water</a></li>
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.21WildFlowersPt11.html" title="Mary’s Evening Sigh">Mary’s Evening Sigh</a></li>
        </ul>
      </div>
      </div>
    </div>
  </div>

  <div aria-multiselectable="true" class="panel-group" id="accordion" role="tablist">
    <div class="panel panel-default">
      <div class="panel-heading" id="headingSeven" role="tab">
        <h4 class="panel-title"><a aria-controls="collapseSeven" aria-expanded="false" class="collapsed" data-parent="#accordion" data-toggle="collapse" href="#collapseSeven" role="button"><em>Nature’s Music</em> (1808)</a></h4>
      </div>
      <div aria-labelledby="headingSeven" class="panel-collapse collapse" id="collapseSeven" role="tabpanel">
        <div class="panel-body"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.26NaturesMusicPt1.html" title="Editorial Introduction">Editorial Introduction</a></div>
        <div class="panel-body">
          <ul class="list-group">
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.26NaturesMusicPt2.html" title="[text]">Text</a></li>
        </ul>
        </div>
      </div>
    </div>
  </div>

  <div aria-multiselectable="true" class="panel-group" id="accordion" role="tablist">
    <div class="panel panel-default">
      <div class="panel-heading" id="headingEight" role="tab">
        <h4 class="panel-title"><a aria-controls="collapseEight" aria-expanded="false" class="collapsed" data-parent="#accordion" data-toggle="collapse" href="#collapseEight" role="button"><em>The History of Little Davy’s New Hat</em> (1815)</a></h4>
      </div>
      <div aria-labelledby="headingEight" class="panel-collapse collapse" id="collapseEight" role="tabpanel">
        <div class="panel-body"><a class="link_ref" href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.32LittleDavysHat.html#davyshatintro" title="Editorial Introduction">Editorial Introduction</a></div>
        <div class="panel-body">
          <ul class="list-group">
          <li class="list-group-item"><a class="link_ref" href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.32LittleDavysHat.html#davyshatpreface" title="[text]">Text</a></li>
        </ul>
        </div>
      </div>
    </div>
  </div>

  <div aria-multiselectable="true" class="panel-group" id="accordion" role="tablist">
    <div class="panel panel-default">
      <div class="panel-heading" id="headingNine" role="tab">
      <h4 class="panel-title"><a aria-controls="collapseNine" aria-expanded="false" class="collapsed" data-parent="#accordion" data-toggle="collapse" href="#collapseNine" role="button"><em>May-Day with the Muses</em> (1822)</a></h4>
      </div>
      <div aria-labelledby="headingNine" class="panel-collapse collapse" id="collapseNine" role="tabpanel">
      <div class="panel-body"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.33MayDayPt1.html" title="Editorial Introduction">Editorial Introduction</a></div>
      <div class="panel-body">
        <ul class="list-group">
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.33MayDayPt2.html" title="The Invitation">The Invitation</a></li>
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.33MayDayPt3.html" title="The Drunken Father">The Drunken Father</a></li>
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.33MayDayPt4.html" title="The Forester">The Forester</a></li>
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.33MayDayPt5.html" title="The Shepherd’s Dream: Or, Fairies’ Masquerade">The Shepherd’s Dream: Or, Fairies’ Masquerade</a></li>
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.33MayDayPt6.html" title="The Soldier’s Home">The Soldier’s Home</a></li>
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.33MayDayPt7.html" title="Rosamond’s Song of Hope">Rosamond’s Song of Hope</a></li>
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.33MayDayPt8.html" title="Alfred and Jennet">Alfred and Jennet</a></li>
        </ul>
      </div>
      </div>
    </div>
  </div>

  <div aria-multiselectable="true" class="panel-group" id="accordion" role="tablist">
    <div class="panel panel-default">
      <div class="panel-heading" id="headingTen" role="tab">
        <h4 class="panel-title"><a aria-controls="collapseTen" aria-expanded="false" class="collapsed" data-parent="#accordion" data-toggle="collapse" href="#collapseTen" role="button"><em>Hazelwood-Hall</em> (1823)</a></h4>
      </div>
      <div aria-labelledby="headingTen" class="panel-collapse collapse" id="collapseTen" role="tabpanel">
        <div class="panel-body"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.35HazelwoodHall.html#hazelwoodintro" title="Editorial Introduction">Editorial Introduction</a></div>
        <div class="panel-body">
          <ul class="list-group">
          <li class="list-group-item"><a class="link_ref" href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.35HazelwoodHall.html#hazelwoodtext" title="[text]">Text</a></li>
        </ul>
        </div>
      </div>
    </div>
  </div>

  <div aria-multiselectable="true" class="panel-group" id="accordion" role="tablist">
    <div class="panel panel-default">
      <div class="panel-heading" id="headingEleven" role="tab">
      <h4 class="panel-title"><a aria-controls="collapseEleven" aria-expanded="false" class="collapsed" data-parent="#accordion" data-toggle="collapse" href="#collapseEleven" role="button">Poems from <em>The Remains of Robert Bloomfield</em> (1824)</a></h4>
      </div>
      <div aria-labelledby="headingEleven" class="panel-collapse collapse" id="collapseEleven" role="tabpanel">
      <div class="panel-body"><a class="link_ref" href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.36RemainsContents.html" title="Editorial Introduction and Contents">Editorial Introduction and Contents</a></div>
      <div class="panel-body">
        <ul class="list-group">
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.36RemainsPt1.html" title="Kentish Mary: A Ballad">Kentish Mary: A Ballad</a></li>
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.36RemainsPt2.html" title="The Dawning of Day: A Hunting Song">The Dawning of Day: A Hunting Song</a></li>
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.36RemainsPt3.html" title="On Repairing a Miniature Bust of Buonaparte for Mrs Palmer">On Repairing a Miniature Bust of Buonaparte for Mrs Palmer</a></li>
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.36RemainsPt4.html" title="The Maid of Dunstable">The Maid of Dunstable</a></li>
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.36RemainsPt5.html" title="Sonnet: To Fifteen Gnats seen Dancing in the Sun-beams on Jan. 3">Sonnet: To Fifteen Gnats seen Dancing in the Sun-beams on Jan. 3</a></li>
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.36RemainsPt6.html" title="Good Nature">Good Nature</a></li>
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.36RemainsPt7.html" title="Hob’s Epitaph">Hob’s Epitaph</a></li>
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.36RemainsPt8.html" title="The Soldier's Return">The Soldier's Return</a></li>
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.36RemainsPt9.html" title="Happiness of Gleaners">Happiness of Gleaners</a></li>
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.36RemainsPt10.html" title="Charity">Charity</a></li>
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.36RemainsPt11.html" title="The Flowers of the Mead">The Flowers of the Mead</a></li>
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.36RemainsPt12.html" title="Fragment (‘‘Twas when the abbey rear’d its spires’)">Fragment (‘‘Twas when the abbey rear’d its spires’)</a></li>
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.36RemainsPt13.html" title="‘Wine, beauty smiles, and social mirth’">‘Wine, beauty smiles, and social mirth’</a></li>
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.36RemainsPt14.html" title="Epitaph for a Young Lady">Epitaph for a Young Lady</a></li>
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.36RemainsPt15.html" title="Aeolus">Aeolus</a></li>
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.36RemainsPt16.html" title="Irish News">Irish News</a></li>
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.36RemainsPt17.html" title="Yield thee to Pleasure, Old Care">Yield thee to Pleasure, Old Care</a></li>
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.36RemainsPt18.html" title="Song: Norah">Song: Norah</a></li>
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.36RemainsPt19.html" title="Sent to a Lady who was Going to a Ball">Sent to a Lady who was Going to a Ball</a></li>
          <li class="list-group-item"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.36RemainsPt20.html" title="On the Death of his Infant Son Robert">On the Death of his Infant Son Robert</a></li>
        </ul>
      </div>
      </div>
    </div>
  </div>

  <div aria-multiselectable="true" class="panel-group" id="accordion" role="tablist">
    <div class="panel panel-default">
      <div class="panel-heading" id="headingTwelve" role="tab">
        <h4 class="panel-title"><a aria-controls="collapseTwelve" aria-expanded="false" class="collapsed" data-parent="#accordion" data-toggle="collapse" href="#collapseTwelve" role="button"><em>The Bird and Insects’ Post Office</em>, from <em>The Remains of Robert Bloomfield</em> (1824)</a></h4>
      </div>
      <div aria-labelledby="headingTwelve" class="panel-collapse collapse" id="collapseTwelve" role="tabpanel">
        <div class="panel-body"><a href="/editions/bloomfield_poems/editions.2019.bloomfield_poems.37BirdsInsects.html" title="Editorial Introduction">Editorial Introduction</a></div>
        <div class="panel-body">
          <ul class="list-group">
          <li class="list-group-item"><a class="link_ref" href="editions/bloomfield_letters/HTML/birdsinsects.html" title="[text]">Text</a></li>
        </ul>
        </div>
      </div>
    </div>
  </div>

  </div>
</HTML>