{{/* readings.html renders the reading pane fragment: one
per liturgy.Section, with one .column per requested version. Role text (heading, citation/subtitle, verse number, refrain) is wrapped in class="..." spans so theme CSS can restyle it; base.css owns layout. */}} {{range .}}

{{.Heading}}

{{if .Subtitle}}

{{.Subtitle}}

{{end}}
{{range .Columns}}

{{.Label}}

{{range .Blocks}} {{if .Refrain}}

{{.Text}}

{{else if .VNum}}

{{.VNum}} {{.Text}}

{{else}}

{{.Text}}

{{end}} {{end}}
{{end}}
{{end}}