Skip to content

Commit 122bff5

Browse files
authored
Remove Themes from docs (#41671)
1 parent 320f713 commit 122bff5

File tree

10 files changed

+0
-78
lines changed

10 files changed

+0
-78
lines changed

.github/CONTRIBUTING.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@ restrictions:
2727
Use [GitHub's "reactions" feature](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/)
2828
instead. We reserve the right to delete comments which violate this rule.
2929

30-
- Please **do not** open issues regarding the official themes offered on <https://themes.getbootstrap.com/>.
31-
Instead, please email any questions or feedback regarding those themes to `themes AT getbootstrap DOT com`.
32-
3330

3431
## Issues assignment
3532

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616
·
1717
<a href="https://github.com/twbs/bootstrap/issues/new?assignees=&labels=feature&template=feature_request.yml">Request feature</a>
1818
·
19-
<a href="https://themes.getbootstrap.com/">Themes</a>
20-
·
2119
<a href="https://blog.getbootstrap.com/">Blog</a>
2220
</p>
2321

config.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ repo: "https://github.com/twbs/bootstrap"
1616
x: "getbootstrap"
1717
opencollective: "https://opencollective.com/bootstrap"
1818
blog: "https://blog.getbootstrap.com/"
19-
themes: "https://themes.getbootstrap.com/"
2019
icons: "https://icons.getbootstrap.com/"
2120
swag: "https://cottonbureau.com/people/bootstrap"
2221

site/src/components/footer/Footer.astro

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ import { getVersionedDocsPath } from '@libs/path'
3939
<li class="mb-2"><a href={getVersionedDocsPath('/')}>Docs</a></li>
4040
<li class="mb-2"><a href={getVersionedDocsPath('examples')}>Examples</a></li>
4141
<li class="mb-2"><a href={getConfig().icons}>Icons</a></li>
42-
<li class="mb-2"><a href={getConfig().themes}>Themes</a></li>
4342
<li class="mb-2"><a href={getConfig().blog}>Blog</a></li>
4443
<li class="mb-2"><a href={getConfig().swag} target="_blank" rel="noopener">Swag Store</a></li>
4544
</ul>

site/src/components/header/Navigation.astro

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ const { addedIn, layout, title } = Astro.props
8585
</LinkItem>
8686
<LinkItem active={title === 'Examples'} href={getVersionedDocsPath('examples/')} track>Examples</LinkItem>
8787
<LinkItem href={getConfig().icons} target="_blank" rel="noopener" track>Icons</LinkItem>
88-
<LinkItem href={getConfig().themes} target="_blank" rel="noopener" track>Themes</LinkItem>
8988
<LinkItem href={getConfig().blog} target="_blank" rel="noopener" track>Blog</LinkItem>
9089
</ul>
9190

site/src/components/home/Themes.astro

Lines changed: 0 additions & 35 deletions
This file was deleted.

site/src/layouts/partials/BsThemes.astro

Lines changed: 0 additions & 30 deletions
This file was deleted.

site/src/libs/config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ const configSchema = z.object({
5050
rfs_version: zPrefixedVersionSemver,
5151
subtitle: z.string(),
5252
swag: z.string().url(),
53-
themes: z.string().url(),
5453
title: z.string(),
5554
toc: z.object({
5655
min: z.number(),

site/src/pages/docs/[version]/examples/index.astro

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
import SingleLayout from '@layouts/SingleLayout.astro'
33
import { getConfig } from '@libs/config'
4-
import BsThemes from '@layouts/partials/BsThemes.astro'
54
import ExamplesMain from '@layouts/partials/ExamplesMain.astro'
65
export function getStaticPaths() {
76
return [
@@ -28,6 +27,5 @@ export function getStaticPaths() {
2827
</div>
2928
<Fragment slot="main-content">
3029
<ExamplesMain />
31-
<BsThemes />
3230
</Fragment>
3331
</SingleLayout>

site/src/pages/index.astro

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import ComponentUtilities from '@components/home/ComponentUtilities.astro'
77
import MastHead from '@components/home/MastHead.astro'
88
import Plugins from '@components/home/Plugins.astro'
99
import Icons from '@components/home/Icons.astro'
10-
import Themes from '@components/home/Themes.astro'
1110
---
1211

1312
<BaseLayout>
@@ -19,6 +18,5 @@ import Themes from '@components/home/Themes.astro'
1918
<ComponentUtilities />
2019
<Plugins />
2120
<Icons />
22-
<Themes />
2321
</div>
2422
</BaseLayout>

0 commit comments

Comments
 (0)