UNIT 15 • STAGE 4 OF 7
Document the federal boarding school system as policy, new flex layout for fact items
Stage 4 documents the federal boarding school system as policy. The section is built from facts in the public record. No quotes. No interpretation. The documented mechanisms of the system, what was prohibited, what was enforced, what the scale was, presented in a clean, readable layout.
The section has two parts: a featured card for Carlisle Indian Industrial School (the first and most documented federal off-reservation boarding school), and a fact list documenting six policy mechanisms drawn from federal records and the 2022 DOI Investigative Report.
The 2022 Federal Indian Boarding School Initiative Investigative Report, published by the U.S. Department of the Interior, identified 408 federal Indian boarding schools that operated in 37 states between 1819 and 1969. It documented 53 burial sites on or near former school properties. It found that the federal government "directly targeted American Indian, Alaska Native, and Native Hawaiian children" through the school system as a matter of deliberate federal policy. This is the federal government's own finding about its own actions. The report is publicly available at the Bureau of Indian Affairs website and is cited as the source for the scale and policy facts in Stage 4.
The new CSS in Stage 4 is the fact item: a horizontal flex layout with a large number or marker on the left and content on the right. You have used vertical flex containers before. This is the first time you are using flex-direction: row (the default) to build a horizontal layout inside a list item.
The two-column schools layout
align-items: start: Both columns start at the same vertical position, but their heights are independent. The hero grid used align-items: center to vertically center shorter text next to a tall image. Here, both columns have similar amounts of text, and top-alignment looks more organized than centering.The fact list container
Each fact item, the horizontal flex pattern
display: flex on .fact-item: This makes the marker and the content sit side by side horizontally. No flex-direction: row needed, row is the default.align-items: flex-start: Aligns the marker and content at the top of the flex container. Without this, the marker number would vertically center alongside the text, which looks off when the text is longer than one line.flex-shrink: 0 on .fact-marker: Prevents the marker column from squishing. Same principle as the source card type column you will build in Stage 6.flex: 1; min-width: 0 on .fact-body: Takes all remaining space after the marker. min-width: 0 prevents text overflow in flex containers, without it, long words can escape their container in certain browsers.opacity: 0.5 on .fact-marker: The number is decorative here, not the content. Dimming it to 50% keeps it visible as a structural element without competing with the text it anchors.The Schools section is pre-built with documented facts from the 2022 DOI Investigative Report and the Carlisle Indian School Digital Resource Center. Read the section carefully. Then:
<!-- REPLACE: ... --> comment in the intro paragraph. Write 2–3 sentences in your own words about the boarding school system. Use a specific fact as your first sentence.The DOI 2022 report includes a full appendix of all 408 schools with locations and dates. Search it for your state. Minnesota schools include Pipestone Indian Training School and Morris Industrial School for Indians (now UMN Morris campus). North Dakota schools include Fort Totten Indian Boarding School at Spirit Lake and Standing Rock Boarding School. South Dakota schools include Pierre Indian School and several reservation boarding schools. The DOI report PDF is linked in the Stage 1 resources.
The two-column layout separates the Carlisle history (a specific institution) from the policy mechanisms (what the system did across all 408 schools). A reader can understand Carlisle as the central case and then understand the system it represented. The fact list's numbered markers give the reader a sense of how many distinct mechanisms were involved without requiring them to count paragraphs.
The align-items: flex-start choice in the fact item is something worth noticing in the preview. Try changing it to center and see what happens to the longer fact items. The marker stays fixed while the text wraps, centering them makes the number float in the middle of a multi-line fact, which looks wrong. flex-start pins both to the top and keeps the reading order clear.
The Schools section is built. Stage 5 adds The Nations: a general look at how allotment affected different types of nations, with a specific callout for Red Lake Nation's resistance, followed by a personal research card for the nation you have been documenting throughout this unit.