* Update layout-base.pug to treat missing `bootstrap5PageStatus` as enabled
* Set `bootstrap5PageStatus = 'disabled'` everywhere it's undefined
I found the files with `find . -name "*.pug" -type f -exec grep -l "block content" {} \; | xargs grep -L "bootstrap5PageStatus\|layout-website-redesign-boo
tstrap-5\|layout-website-redesign-cms-bootstrap-5" | sort`
GitOrigin-RevId: 8ecf2eedea032d96e4fba078fb0316a7a311b08a
22 lines
563 B
Plaintext
22 lines
563 B
Plaintext
extends ../../layout-marketing
|
|
|
|
block vars
|
|
- bootstrap5PageStatus = 'disabled'
|
|
|
|
block content
|
|
main.content.content-alt#main-content
|
|
.container
|
|
.row
|
|
.col-md-8.col-md-offset-2
|
|
.card.project-invite-invalid
|
|
.page-header.text-centered
|
|
h1 #{translate("invite_not_valid")}
|
|
.row.text-center
|
|
.col-md-12
|
|
p
|
|
| #{translate("invite_not_valid_description")}.
|
|
.row.text-center.actions
|
|
.col-md-12
|
|
a.btn.btn-secondary-info.btn-secondary(href="/project") #{translate("back_to_your_projects")}
|
|
|