Skip to content

Commit 1788e7c

Browse files
authored
Update links to repo (#1136)
1 parent ecddf72 commit 1788e7c

File tree

9 files changed

+205
-206
lines changed

9 files changed

+205
-206
lines changed

components_page/components/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ For example, a simple application incorporating example above could look like th
2222

2323
{{code-example:components/index/simple.py}}
2424

25-
There is more detail on this in the [Quickstart](/docs/quickstart/) instructions for creating a basic app. Additionally, the [examples](https://github.com/facultyai/dash-bootstrap-components/tree/main/examples) in our GitHub repository demonstrate how multiple components can be combined to create a feature rich application.
25+
There is more detail on this in the [Quickstart](/docs/quickstart/) instructions for creating a basic app. Additionally, the [examples](https://github.com/dbc-team/dash-bootstrap-components/tree/main/examples) in our GitHub repository demonstrate how multiple components can be combined to create a feature rich application.
2626

2727
For more details on Dash in general, please refer to the [official Dash documentation](https://dash.plotly.com/).

components_page/components/navbar.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The `NavbarSimple` will collapse on smaller screens, and add a toggle for reveal
2121

2222
If you want to have more control over the layout of your navbar you can use the `Navbar` component. This gives you full control over the children, but you will have to write your own callbacks to achieve things like the toggle behaviour on small screens. From Bootstrap 5, all elements inside the `NavBar` should be contained within a [`Container`](/docs/components/layout). We also recommend using a `Nav` component to wrap the navigation items, check the [docs here](/docs/components/nav).
2323

24-
Here is an example of a custom navbar, see the `examples/` folder in the [GitHub repo](https://github.com/facultyai/dash-bootstrap-components/blob/main/examples/advanced-component-usage/navbars.py) for more.
24+
Here is an example of a custom navbar, see the `examples/` folder in the [GitHub repo](https://github.com/dbc-team/dash-bootstrap-components/blob/main/examples/advanced-component-usage/navbars.py) for more.
2525

2626
{{example:components/navbar/navbar.py:navbar}}
2727

content/changelog.md

Lines changed: 194 additions & 194 deletions
Large diffs are not rendered by default.

content/docs/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,4 @@ The CDN links for icons we include are for [Bootstrap Icons v1.8.1](https://icon
7676

7777
`Select` can only be used to select individual items and doesn't have a multi-select feature. This is due to a limitation with how html renders selects. If you wish to be able to use multi-select, instead use `dash_core_components.Dropdown` with `multi=True` and apply css to style it in-line with Bootstrap styles. You can see an example of how to do this [here](https://github.com/tcbegley/dash-bootstrap-css).
7878

79-
[issue]: https://github.com/facultyai/dash-bootstrap-components/issues/new?template=feature.md
79+
[issue]: https://github.com/dbc-team/dash-bootstrap-components/issues/new?template=feature.md

demos/theme_explorer/navbar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from .util import make_subheading
55

66
DBC_HOME = "https://www.dash-bootstrap-components.com/"
7-
DBC_GITHUB = "https://github.com/facultyai/dash-bootstrap-components"
7+
DBC_GITHUB = "https://github.com/dbc-team/dash-bootstrap-components"
88

99
navbar_children = [
1010
dbc.NavItem(dbc.NavLink("GitHub", href=DBC_GITHUB, target="_blank")),

examples/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818
TEMPLATES = HERE.parent / "templates"
1919

2020
GITHUB_EXAMPLES = (
21-
"https://github.com/"
22-
"facultyai/dash-bootstrap-components/blob/main/examples/python"
21+
"https://github.com/" "dbc-team/dash-bootstrap-components/blob/main/examples/python"
2322
)
2423

2524
INDEX_STRING_TEMPLATE = """{% extends "example.html" %}

templates/examples-index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ <h1>Examples</h1>
1111
This page contains example apps built with dash-bootstrap-components.
1212
Check out our
1313
<a
14-
href="https://github.com/facultyai/dash-bootstrap-components/tree/main/examples"
14+
href="https://github.com/dbc-team/dash-bootstrap-components/tree/main/examples"
1515
>GitHub page</a
1616
>
1717
for more.

templates/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<div style="width:250px;height:250px;margin:auto;padding:1rem;background-color:white;border-radius:1rem;box-sizing:content-box;">
1212
<object
1313
type="image/svg+xml"
14-
data="https://cdn.jsdelivr.net/gh/facultyai/dash-bootstrap-components@main/logo/logo.svg"
14+
data="https://cdn.jsdelivr.net/gh/dbc-team/dash-bootstrap-components@main/logo/logo.svg"
1515
style="width:100%;height:100%;"
1616
>
1717
dash-bootstrap-components logo
@@ -29,7 +29,7 @@ <h1 class="font-weight-light">Dash Bootstrap Components</h1>
2929
</p>
3030
<a
3131
class="btn btn-outline-primary"
32-
href="https://github.com/facultyai/dash-bootstrap-components"
32+
href="https://github.com/dbc-team/dash-bootstrap-components"
3333
>Source Code<i class="bi bi-github ms-1"></i></a
3434
>
3535
<a class="btn btn-primary" href="/docs">Get Started »</a>

templates/macros/navbar.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@
5050
<a class="dropdown-item" href="/changelog">Changelog</a>
5151
<a
5252
class="dropdown-item"
53-
href="https://github.com/facultyai/dash-bootstrap-components/issues/new?template=bug-report.md"
53+
href="https://github.com/dbc-team/dash-bootstrap-components/issues/new?template=bug-report.md"
5454
>Report a bug</a
5555
>
5656
<a
5757
class="dropdown-item"
58-
href="https://github.com/facultyai/dash-bootstrap-components/blob/main/.github/CONTRIBUTING.md"
58+
href="https://github.com/dbc-team/dash-bootstrap-components/blob/main/.github/CONTRIBUTING.md"
5959
>Contribute</a
6060
>
6161
<div class="dropdown-divider"></div>
@@ -66,7 +66,7 @@
6666
<ul class="navbar-nav ms-auto" >
6767
<li>
6868
<li class="nav-item">
69-
<a href="https://github.com/facultyai/dash-bootstrap-components" class="nav-link">
69+
<a href="https://github.com/dbc-team/dash-bootstrap-components" class="nav-link">
7070
<i class="bi bi-github ms-1"></i>
7171
<span class="d-lg-none ms-2">Source code</span>
7272
</a>

0 commit comments

Comments
 (0)