|
1 |
| -{% from 'macros/sidenav.html' import sidenav %} |
2 |
| -{% from 'macros/navbar.html' import navbar %} |
3 |
| -{% extends 'base.html' %} |
4 |
| -{% block title %} |
5 |
| - <title>Examples - dbc docs</title> |
6 |
| -{% endblock %} |
7 |
| -{% block header %} |
8 |
| - {{ navbar('examples', False) }} |
9 |
| -{% endblock %} |
| 1 | +{% from "macros/sidenav.html" import sidenav %} |
| 2 | +{% from "macros/navbar.html" import navbar %} |
| 3 | +{% extends "base.html" %} |
| 4 | +{% block title %}<title>Examples - dbc docs</title>{% endblock %} |
| 5 | +{% block header %}{{ navbar("examples", False) }}{% endblock %} |
10 | 6 | {% block body %}
|
11 |
| - <div class="container"> |
12 |
| - <main class="dbcd-main mb-5"> |
13 |
| - <h1>Examples</h1> |
14 |
| - <p class="lead"> |
15 |
| - This page contains example apps built with dash-bootstrap-components. Check out our |
16 |
| - <a href="https://github.com/facultyai/dash-bootstrap-components/tree/main/examples">GitHub page</a> |
17 |
| - for more. |
18 |
| - </p> |
19 |
| - <div class="row"> |
20 |
| - <div class="col-12 col-md-4"> |
21 |
| - <h2>Iris</h2> |
22 |
| - <div class="card"> |
23 |
| - <a href="/examples/iris"><img src="/static/images/examples/iris.png" alt="Iris example screenshot" class="card-img-top card-img-bottom" /></a> |
24 |
| - </div> |
25 |
| - <p> |
26 |
| - Interactively cluster the Iris dataset. Based on |
27 |
| - <a href="https://shiny.rstudio.com/gallery/kmeans-example.html">this RShiny example</a>. |
28 |
| - </p> |
| 7 | +<div class="container"> |
| 8 | + <main class="dbcd-main mb-5"> |
| 9 | + <h1>Examples</h1> |
| 10 | + <p class="lead"> |
| 11 | + This page contains example apps built with dash-bootstrap-components. |
| 12 | + Check out our |
| 13 | + <a |
| 14 | + href="https://github.com/facultyai/dash-bootstrap-components/tree/main/examples" |
| 15 | + >GitHub page</a |
| 16 | + > |
| 17 | + for more. |
| 18 | + </p> |
| 19 | + <div class="row"> |
| 20 | + <div class="col-12 col-md-4"> |
| 21 | + <h2>Iris</h2> |
| 22 | + <div class="card"> |
| 23 | + <a href="/examples/iris"> |
| 24 | + <img |
| 25 | + src="/static/images/examples/iris.png" |
| 26 | + alt="Iris example screenshot" |
| 27 | + class="card-img-top card-img-bottom" |
| 28 | + /></a> |
29 | 29 | </div>
|
30 |
| - <div class="col-12 col-md-4"> |
31 |
| - <h2>Graphs in <code>Tabs</code></h2> |
32 |
| - <div class="card"> |
33 |
| - <a href="/examples/graphs-in-tabs"><img src="/static/images/examples/git.png" alt="Graphs in tabs example screehshot" class="card-img-top card-img-bottom" /></a> |
34 |
| - </div> |
35 |
| - <p> |
36 |
| - An example app showing how to ensure <code>dash_core_components.Graph</code> |
37 |
| - components are sized correctly when used with <code>dbc.Tabs</code>. |
38 |
| - </p> |
| 30 | + <p> |
| 31 | + Interactively cluster the Iris dataset. Based on |
| 32 | + <a href="https://shiny.rstudio.com/gallery/kmeans-example.html" |
| 33 | + >this RShiny example</a |
| 34 | + >. |
| 35 | + </p> |
| 36 | + </div> |
| 37 | + <div class="col-12 col-md-4"> |
| 38 | + <h2>Graphs in <code>Tabs</code></h2> |
| 39 | + <div class="card"> |
| 40 | + <a href="/examples/graphs-in-tabs" |
| 41 | + ><img |
| 42 | + src="/static/images/examples/git.png" |
| 43 | + alt="Graphs in tabs example screehshot" |
| 44 | + class="card-img-top card-img-bottom" |
| 45 | + /></a> |
39 | 46 | </div>
|
40 |
| - <div class="col-12 col-md-4"> |
41 |
| - <h2>Simple sidebar</h2> |
42 |
| - <div class="card"> |
43 |
| - <a href="/examples/simple-sidebar"><img src="/static/images/examples/ss.png" alt="Simple sidebar example screenshot" class="card-img-top card-img-bottom" /></a> |
44 |
| - </div> |
45 |
| - <p>An example multipage app with sidebar and active navigation links.</p> |
| 47 | + <p> |
| 48 | + An example app showing how to ensure <code>dash_core_components.Graph</code> |
| 49 | + components are sized correctly when used with <code>dbc.Tabs</code>. |
| 50 | + </p> |
| 51 | + </div> |
| 52 | + <div class="col-12 col-md-4"> |
| 53 | + <h2>Simple sidebar</h2> |
| 54 | + <div class="card"> |
| 55 | + <a href="/examples/simple-sidebar" |
| 56 | + ><img |
| 57 | + src="/static/images/examples/ss.png" |
| 58 | + alt="Simple sidebar example screenshot" |
| 59 | + class="card-img-top card-img-bottom" |
| 60 | + /></a> |
46 | 61 | </div>
|
| 62 | + <p> |
| 63 | + An example multipage app with sidebar and active navigation links. |
| 64 | + </p> |
47 | 65 | </div>
|
48 |
| - </main> |
49 |
| - </div> |
| 66 | + </div> |
| 67 | + </main> |
| 68 | +</div> |
50 | 69 | {% endblock %}
|
0 commit comments