Source for creedsandconfessions.com — a searchable edition of the creeds, confessions, and catechisms of the church.
| Ecumenical creeds | Apostles', Nicene, Athanasian |
| Westminster Standards | Confession of Faith, Shorter Catechism, Larger Catechism |
| Three Forms of Unity | Belgic Confession, Heidelberg Catechism, Canons of Dort |
| OPC Book of Church Order | Form of Government, Book of Discipline, Directory for Public Worship |
- Version toggle on the Westminster Standards — read the constitutional text or the 2025 Modern English Study Version, with an option to highlight what changed. The MESV is for study only and carries no constitutional authority.
- Scripture proofs in collapsible callouts, using the OPC lettered proof scheme.
- Section-level search at
/search/— filter by collection or document, use reference shortcuts such asWCF 3.1, and deep-link to the individual chapter, section, or catechism question. Scripture proof text appears in an excerpt only when the proof itself matches. - Edition provenance on every document — organization, edition, authoritative source, verification date, and independent-site notice.
- Scripture reference tooltips via RefTagger.
Requires Ruby 2.7 or newer (the github-pages gem does not support 2.6).
bundle install
bundle exec jekyll serveThe site is then at http://localhost:4000.
To match what GitHub Pages actually builds, keep Gemfile.lock committed and run
bundle update github-pages rather than upgrading Jekyll directly.
| Path | Purpose |
|---|---|
index.md |
Homepage |
_pages/*.md |
The twelve documents |
_layouts/, _includes/ |
Local overrides of the jekyll-gitbook remote theme |
assets/gitbook/custom-local.css |
All site-specific CSS (callouts, version toggle, print) |
assets/gitbook/custom.js |
Accessible reader controls, version toggle, mobile section selector, RefTagger re-tagging |
assets/search_plus_index.json |
Liquid template that builds the section-level search index |
test/fixtures/westminster-text.json |
Constitutional and 2025 MESV passages extracted from the OPC comparison PDFs |
- GitHub Pages builds this site with Jekyll 3.10, not Jekyll 4. Several things work
locally on Jekyll 4 and do nothing in production — most notably an
order:list under a collection, which Jekyll 4 honours and 3.10 ignores silently. Verify against thegithub-pagesgem, not a newer Jekyll. - Sidebar order comes from
nav_orderin each page's front matter, sorted explicitly in_includes/toc-date.htmland_layouts/post.html(which also derives the prev/next arrows from it —page.previous/page.nextfollow Jekyll's own collection order and are wrong here). Group headings are emitted whenevercategorychanges, so keep same-category pages contiguous in thenav_ordersequence. - The theme is pinned by SHA in
_config.yml. Bump it deliberately; upstream has no tags. - In the Westminster Standards, the constitutional wording is the ordinary,
crawler-visible text. Each difference uses one
<span class="text-variant" data-modern="…">constitutional wording</span>. JavaScript readsdata-modernonly after the visitor explicitly selects MESV; search engines and no-JavaScript readers therefore receive one edition, never concatenated alternatives. - Do not hand-edit Westminster variant spans. Update the authoritative PDFs if
needed, run
script/build-westminster-fixtures.py, then runscript/rebuild-westminster-variants.py.
These run in CI (.github/workflows/build.yml) and can be run by hand:
python3 script/build-westminster-fixtures.py --check
python3 script/check-variant-markup.pyRe-extracts the comparison PDFs to prove the committed fixture is current, then reconstructs and compares all 474 constitutional and MESV passages against it. The check also rejects legacy paired spans and known merged-word corruption.
python3 script/check-generated-html.py _siteChecks one visible H1, one main landmark, one skip link, named buttons, edition panels, crawler-visible variant integrity, and labeled reader controls. Run a build first.
python3 script/check-links.py _siteChecks every internal link and #fragment in the built site, including the ~1,800
proof-marker anchors and all 826 search-index deep links. Run a build first.
The site loads RefTagger from
api.reftagger.com to turn scripture references into tooltips. If that service goes
away, references degrade to plain text — nothing else breaks.
See LICENSE. The confessional texts themselves are in the public domain.