| ... |
... |
@@ -42,6 +42,42 @@ |
| 42 |
42 |
</div> |
| 43 |
43 |
</div> |
| 44 |
44 |
</div> |
|
45 |
+ <div id="carousel-example-generic" class="carousel slide" data-ride="carousel"> |
|
46 |
+ <!-- Indicators --> |
|
47 |
+ <ol class="carousel-indicators"> |
|
48 |
+ <li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li> |
|
49 |
+ <li data-target="#carousel-example-generic" data-slide-to="1"></li> |
|
50 |
+ <li data-target="#carousel-example-generic" data-slide-to="2"></li> |
|
51 |
+ </ol> |
|
52 |
+ |
|
53 |
+ <!-- Wrapper for slides --> |
|
54 |
+ <div class="carousel-inner" role="listbox"> |
|
55 |
+ <div class="item active"> |
|
56 |
+ <img src="..." alt="..."> |
|
57 |
+ <div class="carousel-caption"> |
|
58 |
+ ... |
|
59 |
+ </div> |
|
60 |
+ </div> |
|
61 |
+ <div class="item"> |
|
62 |
+ <img src="..." alt="..."> |
|
63 |
+ <div class="carousel-caption"> |
|
64 |
+ ... |
|
65 |
+ </div> |
|
66 |
+ </div> |
|
67 |
+ ... |
|
68 |
+ </div> |
|
69 |
+ |
|
70 |
+ <!-- Controls --> |
|
71 |
+ <a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev"> |
|
72 |
+ <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span> |
|
73 |
+ <span class="sr-only">Previous</span> |
|
74 |
+ </a> |
|
75 |
+ <a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next"> |
|
76 |
+ <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span> |
|
77 |
+ <span class="sr-only">Next</span> |
|
78 |
+ </a> |
|
79 |
+</div> |
|
80 |
+ |
| 45 |
45 |
</div> |
| 46 |
46 |
</div> |
| 47 |
47 |
|