Overview

Pages that have a similar purpose are grouped into sets and configured together. Pages are configured differently because the content varies based on the page type. For example, person pages are very different from chart pages.

The Layouts Section is divided into subsections, including a Default Layout subsection and one subsection for each Page Set. Values set in the Default Layout subsection appply to all pages except if the user alters the same property in the Page Set-specific subsection.

For each Page Set, the user can customize the Layout, the Static Content properties, and the Page Scripts.

List of Page Sets

Each type of page created by Second Site is assigned to a Page Set as described in the following list.

Name Body Tag ID # Description
Main Page mainpage 1 Used for index.htm or main.htm, whichever is the main page of the site.
Surname Index surnameindex 2 Used for the surname index page.
Person Indexes personindexes 3 Used for the name index pages, including custom name indexes.
Person Pages personpages 4 Used for person pages.
Source Pages sourcepages 5 Used for source pages.
Chart Pages chartpages 6 Used for chart pages, including all the chart types that Second Site makes. Note that the list of charts is not a chart, it's a list and is on a List Page.
List Pages listpages 7 Used for various lists such as the Master Index, the list of charts, Exhibit Galleries (lists of exhibits), and User Item SubPages.
Image Pages imagepages 8 Used for image exhibit pages.
User Pages userpages 9 Used for a variety of pages where the user provides most if not all of the content, including Custom Pages, exhibit text pages, and HTML pages that are in the Input folder.
Place Indexes placeindexes 10 Used for place index pages, including the master place index page and the place index detail pages.

Body Tag IDs

For users who add User Styles to alter CSS parameters in Second Site, you can use Page Set-specific Body element IDs to restrict CSS rules to a particular Page Set. Second Site adds the IDs expressly for this purpose.

For example, you can change the color of H2 elements in the Main Page content using a User Style, as follows.

User Style Selector: #mainpage #content h2
User Style other: color: #0000FF;

"#mainpage" in the selector limits the rule to pages in the Main Page Page Set, of which there is only one. "#content" limits the rule to the main content setion of the page. "h2" limits the rule to HTML H2 elements only.

On This Page