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)
| Partner | ID |
|---|---|
| Alamosa Public Library | Alamosa |
| American Alpine Club | AmUSAlpine |
| Arapahoe Library District | ALD |
| Arvada Historical Society | ArvUSHistUSSoc |
| Aspen Historical Society | Aspen |
| Aurora History Museum | AuUSHistUSMuseum |
| Broomfield History Collections | BFUSHistUSColl |
| Broomfield Veterans Museum | BVM |
| Buffalo Bill Museum and Grave | BBMG |
| Campbell County Rockpile Museum | CCRM |
| Carnegie Library for Local History, Boulder Public Library | CLLHUSBPL |
| Casper College Goodstein Foundation Library | CasperUSGoodstein |
| City of Greeley Museums | HPHC |
| City of Thornton Archives Digital Collection | CtyUSThornton |
| Clear Creek County Library District | CCCLD |
| Colorado Golf Hall of Fame | CGHOF |
| Colorado Parks & Wildlife Digital Collection | CPW |
| Colorado Snowsports Museum and Hall of Fame | CSMHF |
| Colorado State Publications Library | CSPL |
| Colorado State University. Libraries | MountUSScholar |
| CU Art Museum, University of Colorado Boulder | CUUSArtUSMuseum |
| Denver Public Library | DPL |
| Douglas County Libraries. Archives and Local History | DCLUSALH |
| Eagle County Historical Society | Marmot |
| East High School Museum | EastUSHigh |
| Estes Park Museum | EPM |
| Fort Caspar Museum | FCM |
| Fort Collins History Connection | FCHC |
| Front Range Community College | FRCC |
| Front Range Community College Larimer Campus | FRCCUSLarimer |
| Golden History Museum & Park | GHMP |
| Heritage Lakewood Belmar Park | LWUSHertUSCenter |
| History Colorado | HistUSColo |
| History Jackson Hole | HJH |
| Hotchkiss-Crawford Historical Society | Hotchkiss |
| Ignacio Community Library | IgUSComUSLib |
| Kit Carson County Archives | BurlUSPubUSLib |
| Lafayette History Museum | LFUSMinersUSMuseum |
| Louisville Historical Museum | LoUSHistUSMuseum |
| Loveland Museum | LOVE |
| Meeteetse Museums | MeetUSMus |
| National Federation of the Blind of Colorado | NFBCO |
| Park County Archives, Wyoming | ParkUSCnty |
| Park County Local History Digital Archive, Colorado | PCLHA |
| Pikes Peak Library District | PPLD |
| Pine River Library | PineUSRiver |
| Pines and Plains Libraries Digital Collection | PinesUSPlains |
| Pueblo City-County Library District | PCCL |
| Security Public Library | Security |
| Stories of Colorado | StoUSColo |
| The Brinton Museum | Brinton |
| The Center on Colfax | TheCenter |
| University of Colorado Boulder University Libraries | CUUSBoulderUSLib |
| University of Denver | DU |
| University of Northern Colorado | UNC |
| University of Wyoming | UWYUSLibrary |
| University of Wyoming Art Museum | UWYUSArtUSMuseum |
| University of Wyoming, American Heritage Center | UWYUSAmUSHeritage |
| Western Wyoming Community College Hay Library | HayUSLibrary |
| Wyoming State Archive | WYUSStateUSArch |
| Wyoming State Library | WYUSStateUSLib |
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>