Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,6 @@ restrictions:
Use [GitHub's "reactions" feature](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/)
instead. We reserve the right to delete comments which violate this rule.

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


## Issues assignment

Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
·
<a href="https://github.com/twbs/bootstrap/issues/new?assignees=&labels=feature&template=feature_request.yml">Request feature</a>
·
<a href="https://themes.getbootstrap.com/">Themes</a>
·
<a href="https://blog.getbootstrap.com/">Blog</a>
</p>

Expand Down
1 change: 0 additions & 1 deletion config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ repo: "https://github.com/twbs/bootstrap"
x: "getbootstrap"
opencollective: "https://opencollective.com/bootstrap"
blog: "https://blog.getbootstrap.com/"
themes: "https://themes.getbootstrap.com/"
icons: "https://icons.getbootstrap.com/"
swag: "https://cottonbureau.com/people/bootstrap"

Expand Down
1 change: 0 additions & 1 deletion site/src/components/footer/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ import { getVersionedDocsPath } from '@libs/path'
<li class="mb-2"><a href={getVersionedDocsPath('/')}>Docs</a></li>
<li class="mb-2"><a href={getVersionedDocsPath('examples')}>Examples</a></li>
<li class="mb-2"><a href={getConfig().icons}>Icons</a></li>
<li class="mb-2"><a href={getConfig().themes}>Themes</a></li>
<li class="mb-2"><a href={getConfig().blog}>Blog</a></li>
<li class="mb-2"><a href={getConfig().swag} target="_blank" rel="noopener">Swag Store</a></li>
</ul>
Expand Down
1 change: 0 additions & 1 deletion site/src/components/header/Navigation.astro
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ const { addedIn, layout, title } = Astro.props
</LinkItem>
<LinkItem active={title === 'Examples'} href={getVersionedDocsPath('examples/')} track>Examples</LinkItem>
<LinkItem href={getConfig().icons} target="_blank" rel="noopener" track>Icons</LinkItem>
<LinkItem href={getConfig().themes} target="_blank" rel="noopener" track>Themes</LinkItem>
<LinkItem href={getConfig().blog} target="_blank" rel="noopener" track>Blog</LinkItem>
</ul>

Expand Down
35 changes: 0 additions & 35 deletions site/src/components/home/Themes.astro

This file was deleted.

30 changes: 0 additions & 30 deletions site/src/layouts/partials/BsThemes.astro

This file was deleted.

1 change: 0 additions & 1 deletion site/src/libs/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ const configSchema = z.object({
rfs_version: zPrefixedVersionSemver,
subtitle: z.string(),
swag: z.string().url(),
themes: z.string().url(),
title: z.string(),
toc: z.object({
min: z.number(),
Expand Down
2 changes: 0 additions & 2 deletions site/src/pages/docs/[version]/examples/index.astro
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---
import SingleLayout from '@layouts/SingleLayout.astro'
import { getConfig } from '@libs/config'
import BsThemes from '@layouts/partials/BsThemes.astro'
import ExamplesMain from '@layouts/partials/ExamplesMain.astro'
export function getStaticPaths() {
return [
Expand All @@ -28,6 +27,5 @@ export function getStaticPaths() {
</div>
<Fragment slot="main-content">
<ExamplesMain />
<BsThemes />
</Fragment>
</SingleLayout>
2 changes: 0 additions & 2 deletions site/src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import ComponentUtilities from '@components/home/ComponentUtilities.astro'
import MastHead from '@components/home/MastHead.astro'
import Plugins from '@components/home/Plugins.astro'
import Icons from '@components/home/Icons.astro'
import Themes from '@components/home/Themes.astro'
---

<BaseLayout>
Expand All @@ -19,6 +18,5 @@ import Themes from '@components/home/Themes.astro'
<ComponentUtilities />
<Plugins />
<Icons />
<Themes />
</div>
</BaseLayout>