Plains to Peaks Search Widget

Use the embeddable search widgets below to help us spread the word about the Plains to Peaks Collective and your collection in the Plains to Peaks Collective (PPC).

To create the default widget, using its default values and styles, searching all Plains to Peaks Collective items, use this snippet:

<div id="ppc_search"></div>
<script src="https://cdn.jsdelivr.net/gh/DigExpCon/p2psearchwidget@main/p2p-search-widget.js" type="text/javascript"></script>

It should produce a widget that looks something like this, depending on how your own site’s styles apply to the widget’s elements:

Customizing the widget using data attributes

There are a number of options for changing the widget’s appearance and to search the collections of specific PPC partner collections.

To use the ‘dark’ widget, include ‘data-color=”dark”‘ in the #ppc_search div, like this:

<div id="ppc_search" data-color="dark"></div>
<script src="https://cdn.jsdelivr.net/gh/DigExpCon/p2psearchwidget@main/p2p-search-widget.js" type="text/javascript"></script>

It should look something like this:

Restricting search to one or more partner

To restrict the widget’s search to the collections of a single contributing partner, put the partner ID–as listed in the table below–in the ‘data-search’ attribute. For example, if you wanted to search only the items contributed by the Colorado State Publications library, you’d use a snippet like this:

<div id="ppc_search" data-search="CSPL"></div>
<script src="https://cdn.jsdelivr.net/gh/DigExpCon/p2psearchwidget@main/p2p-search-widget.js" type="text/javascript"></script>

You can also combine partner IDs in a comma-separated list (with no spaces). For example, the code below will search the contributions of the Alamosa Public Library, the American Alpine Club, and the Arapahoe Library District:

<div id="ppc_search" data-search="Alamosa,AmUSAlpine,ALD"></div>
<script src="https://cdn.jsdelivr.net/gh/DigExpCon/p2psearchwidget@main/p2p-search-widget.js" type="text/javascript"></script>

Partner IDs (current as of 30 June 2026)

PartnerID
Alamosa Public LibraryAlamosa
American Alpine ClubAmUSAlpine
Arapahoe Library DistrictALD
Arvada Historical SocietyArvUSHistUSSoc
Aspen Historical SocietyAspen
Aurora History MuseumAuUSHistUSMuseum
Broomfield History CollectionsBFUSHistUSColl
Broomfield Veterans MuseumBVM
Buffalo Bill Museum and GraveBBMG
Campbell County Rockpile MuseumCCRM
Carnegie Library for Local History, Boulder Public LibraryCLLHUSBPL
Casper College Goodstein Foundation LibraryCasperUSGoodstein
City of Greeley MuseumsHPHC
City of Thornton Archives Digital CollectionCtyUSThornton
Clear Creek County Library DistrictCCCLD
Colorado Golf Hall of FameCGHOF
Colorado Parks & Wildlife Digital CollectionCPW
Colorado Snowsports Museum and Hall of FameCSMHF
Colorado State Publications LibraryCSPL
Colorado State University. LibrariesMountUSScholar
CU Art Museum, University of Colorado BoulderCUUSArtUSMuseum
Denver Public LibraryDPL
Douglas County Libraries. Archives and Local HistoryDCLUSALH
Eagle County Historical SocietyMarmot
East High School MuseumEastUSHigh
Estes Park MuseumEPM
Fort Caspar MuseumFCM
Fort Collins History ConnectionFCHC
Front Range Community CollegeFRCC
Front Range Community College Larimer CampusFRCCUSLarimer
Golden History Museum & ParkGHMP
Heritage Lakewood Belmar ParkLWUSHertUSCenter
History ColoradoHistUSColo
History Jackson HoleHJH
Hotchkiss-Crawford Historical SocietyHotchkiss
Ignacio Community LibraryIgUSComUSLib
Kit Carson County ArchivesBurlUSPubUSLib
Lafayette History MuseumLFUSMinersUSMuseum
Louisville Historical MuseumLoUSHistUSMuseum
Loveland MuseumLOVE
Meeteetse MuseumsMeetUSMus
National Federation of the Blind of ColoradoNFBCO
Park County Archives, WyomingParkUSCnty
Park County Local History Digital Archive, ColoradoPCLHA
Pikes Peak Library DistrictPPLD
Pine River LibraryPineUSRiver
Pines and Plains Libraries Digital CollectionPinesUSPlains
Pueblo City-County Library DistrictPCCL
Security Public LibrarySecurity
Stories of ColoradoStoUSColo
The Brinton MuseumBrinton
The Center on ColfaxTheCenter
University of Colorado Boulder University LibrariesCUUSBoulderUSLib
University of DenverDU
University of Northern ColoradoUNC
University of WyomingUWYUSLibrary
University of Wyoming Art MuseumUWYUSArtUSMuseum
University of Wyoming, American Heritage CenterUWYUSAmUSHeritage
Western Wyoming Community College Hay LibraryHayUSLibrary
Wyoming State ArchiveWYUSStateUSArch
Wyoming State LibraryWYUSStateUSLib

Unfortunately, there is no way at present to search the collections of more than one partner at a time, other than to search all of the PPC’s collections (the default configuration).

Changing the widget’s heading

To use your own heading above the widget, or to leave out the heading altogether, use the ‘data-heading’ attribute.

<div id="ppc_search" data-heading="This is a custom heading"></div>
<script src="https://cdn.jsdelivr.net/gh/DigExpCon/p2psearchwidget@main/p2p-search-widget.js" type="text/javascript"></script>

Creates a widget like:

To leave out the heading, use:

<div id="ppc_search" data-heading="none">
<script src="https://cdn.jsdelivr.net/gh/DigExpCon/p2psearchwidget@main/p2p-search-widget.js" type="text/javascript"></script>

Applying your own styles to the widget

To use only the widget’s basic layout styles, use a data-addstyles=”basic” attribute:

<div id="ppc_search" data-addstyles="basic"></div>

Or, to not apply any of the widget’s styles, and just create your own styles:

<div id="ppc_search" data-addstyles="no"></div>

Combining Attributes

All of these attributes can be combined to customize the widget. So, for example, a ‘dark’ widget, searching only the State Publications Library collection, with no heading, and applying only basic styles, you’d use a widget like this:

<div id="ppc_search" data-color="dark" data-search="Colorado State Publications Library" data-heading="none" data-addstyles="basic">
<script src="https://cdn.jsdelivr.net/gh/DigExpCon/p2psearchwidget@main/p2p-search-widget.js" type="text/javascript"></script>