* Remove bootstrap-3 entrypoint * Rename bootstrap-5 entrypoint to bootstrap * Restore entrypoints * Remove `bootstrap-5` and `bootstrap-3` entrypoints and a single `bootstrap.ts` file is now the default entrypoint * Update `bootstrap-5` component imports to `bootstrap` * Update `bootstrap-5` CSS imports to `bootstrap` * Remove the `isBootstrap5` utility * Remove `bootstrapVersion` * Remove `ol-bootstrapVersion` * Remove getCssThemeModifier * Update path and rename * Source format * Remove Bootstrap v3 and Bootstrap v5 alias npm packages * Remove bootstrap argument * Remove unused files * Update with the latest split tests * Remove remaining bootstrap5PageStatus * Update path GitOrigin-RevId: 7acda2f80114d2de8699e1f06729a2a29218e284
21 lines
391 B
Plaintext
21 lines
391 B
Plaintext
doctype html
|
|
html(lang='en')
|
|
- metadata = metadata || {}
|
|
block vars
|
|
|
|
head
|
|
if metadata && metadata.title
|
|
title= metadata.title
|
|
if metadata && metadata.viewport
|
|
meta(
|
|
name='viewport'
|
|
content='width=device-width, initial-scale=1.0, user-scalable=yes'
|
|
)
|
|
|
|
link(rel='icon' href='/favicon.ico')
|
|
|
|
if buildCssPath
|
|
link(rel='stylesheet' href=buildCssPath())
|
|
|
|
block body
|