Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bootstrap
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
bootstrap
Commits
fd49d4a4
Commit
fd49d4a4
authored
Jan 31, 2012
by
Jacob Thornton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
move examples into docs...
parent
bdfb05db
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
33 additions
and
32 deletions
+33
-32
Makefile
Makefile
+1
-0
docs/assets/bootstrap.zip
docs/assets/bootstrap.zip
+0
-0
docs/examples.html
docs/examples.html
+3
-3
docs/examples/fluid.html
docs/examples/fluid.html
+6
-6
docs/examples/hero.html
docs/examples/hero.html
+5
-5
docs/examples/starter-template.html
docs/examples/starter-template.html
+15
-15
docs/templates/pages/examples.mustache
docs/templates/pages/examples.mustache
+3
-3
No files found.
Makefile
View file @
fd49d4a4
...
@@ -18,6 +18,7 @@ docs: bootstrap
...
@@ -18,6 +18,7 @@ docs: bootstrap
cp
img/
*
docs/assets/img/
cp
img/
*
docs/assets/img/
cp
js/
*
.js docs/assets/js/
cp
js/
*
.js docs/assets/js/
cp
js/tests/vendor/jquery.js docs/assets/js/
cp
js/tests/vendor/jquery.js docs/assets/js/
cp
js/tests/vendor/jquery.js docs/assets/js/
#
#
# BUILD SIMPLE BOOTSTRAP DIRECTORY
# BUILD SIMPLE BOOTSTRAP DIRECTORY
...
...
docs/assets/bootstrap.zip
View file @
fd49d4a4
No preview for this file type
docs/examples.html
View file @
fd49d4a4
...
@@ -84,21 +84,21 @@
...
@@ -84,21 +84,21 @@
<ul
class=
"thumbnails bootstrap-examples"
>
<ul
class=
"thumbnails bootstrap-examples"
>
<li
class=
"span4"
>
<li
class=
"span4"
>
<a
class=
"thumbnail"
href=
"
../
examples/hero.html"
>
<a
class=
"thumbnail"
href=
"examples/hero.html"
>
<img
src=
"assets/img/examples/bootstrap-example-hero.jpg"
alt=
""
>
<img
src=
"assets/img/examples/bootstrap-example-hero.jpg"
alt=
""
>
</a>
</a>
<h3>
Basic marketing site
</h3>
<h3>
Basic marketing site
</h3>
<p>
Featuring a hero unit for a primary message and three supporting elements.
</p>
<p>
Featuring a hero unit for a primary message and three supporting elements.
</p>
</li>
</li>
<li
class=
"span4"
>
<li
class=
"span4"
>
<a
class=
"thumbnail"
href=
"
../
examples/fluid.html"
>
<a
class=
"thumbnail"
href=
"examples/fluid.html"
>
<img
src=
"assets/img/examples/bootstrap-example-fluid.jpg"
alt=
""
>
<img
src=
"assets/img/examples/bootstrap-example-fluid.jpg"
alt=
""
>
</a>
</a>
<h3>
Fluid layout
</h3>
<h3>
Fluid layout
</h3>
<p>
Uses are new responsive, fluid grid system to create seamless liquid layout.
</p>
<p>
Uses are new responsive, fluid grid system to create seamless liquid layout.
</p>
</li>
</li>
<li
class=
"span4"
>
<li
class=
"span4"
>
<a
class=
"thumbnail"
href=
"
../
examples/starter-template.html"
>
<a
class=
"thumbnail"
href=
"examples/starter-template.html"
>
<img
src=
"assets/img/examples/bootstrap-example-starter.jpg"
alt=
""
>
<img
src=
"assets/img/examples/bootstrap-example-starter.jpg"
alt=
""
>
</a>
</a>
<h3>
Starter template
</h3>
<h3>
Starter template
</h3>
...
...
examples/fluid.html
→
docs/
examples/fluid.html
View file @
fd49d4a4
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
<![endif]-->
<![endif]-->
<!-- Le styles -->
<!-- Le styles -->
<link
href=
"../
docs/
assets/css/bootstrap.css"
rel=
"stylesheet"
>
<link
href=
"../assets/css/bootstrap.css"
rel=
"stylesheet"
>
<style
type=
"text/css"
>
<style
type=
"text/css"
>
body
{
body
{
padding-top
:
60px
;
padding-top
:
60px
;
...
@@ -22,7 +22,7 @@
...
@@ -22,7 +22,7 @@
padding
:
9px
0
;
padding
:
9px
0
;
}
}
</style>
</style>
<link
href=
"../
docs/
assets/css/bootstrap-responsive.css"
rel=
"stylesheet"
>
<link
href=
"../assets/css/bootstrap-responsive.css"
rel=
"stylesheet"
>
<!-- Le fav and touch icons -->
<!-- Le fav and touch icons -->
<link
rel=
"shortcut icon"
href=
"images/favicon.ico"
>
<link
rel=
"shortcut icon"
href=
"images/favicon.ico"
>
...
@@ -133,9 +133,9 @@
...
@@ -133,9 +133,9 @@
<!-- Le javascript
<!-- Le javascript
================================================== -->
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<!-- Placed at the end of the document so the pages load faster -->
<script
src=
"../js/tests/vendor/jquery.js"
></script>
<script
src=
"../
assets/
js/tests/vendor/jquery.js"
></script>
<script
src=
"../js/bootstrap-transition.js"
></script>
<script
src=
"../
assets/
js/bootstrap-transition.js"
></script>
<script
src=
"../js/bootstrap-collapse.js"
></script>
<script
src=
"../
assets/
js/bootstrap-collapse.js"
></script>
</body>
</body>
</html>
</html>
examples/hero.html
→
docs/
examples/hero.html
View file @
fd49d4a4
...
@@ -12,14 +12,14 @@
...
@@ -12,14 +12,14 @@
<![endif]-->
<![endif]-->
<!-- Le styles -->
<!-- Le styles -->
<link
href=
"../
docs/
assets/css/bootstrap.css"
rel=
"stylesheet"
>
<link
href=
"../assets/css/bootstrap.css"
rel=
"stylesheet"
>
<style
type=
"text/css"
>
<style
type=
"text/css"
>
body
{
body
{
padding-top
:
60px
;
padding-top
:
60px
;
padding-bottom
:
40px
;
padding-bottom
:
40px
;
}
}
</style>
</style>
<link
href=
"../
docs/
assets/css/bootstrap-responsive.css"
rel=
"stylesheet"
>
<link
href=
"../assets/css/bootstrap-responsive.css"
rel=
"stylesheet"
>
<!-- Le fav and touch icons -->
<!-- Le fav and touch icons -->
<link
rel=
"shortcut icon"
href=
"images/favicon.ico"
>
<link
rel=
"shortcut icon"
href=
"images/favicon.ico"
>
...
@@ -89,9 +89,9 @@
...
@@ -89,9 +89,9 @@
<!-- Le javascript
<!-- Le javascript
================================================== -->
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<!-- Placed at the end of the document so the pages load faster -->
<script
src=
"../js/tests/vendor/jquery.js"
></script>
<script
src=
"../
assets/
js/tests/vendor/jquery.js"
></script>
<script
src=
"../js/bootstrap-transition.js"
></script>
<script
src=
"../
assets/
js/bootstrap-transition.js"
></script>
<script
src=
"../js/bootstrap-collapse.js"
></script>
<script
src=
"../
assets/
js/bootstrap-collapse.js"
></script>
</body>
</body>
</html>
</html>
examples/starter-template.html
→
docs/
examples/starter-template.html
View file @
fd49d4a4
...
@@ -12,8 +12,8 @@
...
@@ -12,8 +12,8 @@
<![endif]-->
<![endif]-->
<!-- Le styles -->
<!-- Le styles -->
<link
href=
"../
docs/
assets/css/bootstrap.css"
rel=
"stylesheet"
>
<link
href=
"../assets/css/bootstrap.css"
rel=
"stylesheet"
>
<link
href=
"../
docs/
assets/css/bootstrap-responsive.css"
rel=
"stylesheet"
>
<link
href=
"../assets/css/bootstrap-responsive.css"
rel=
"stylesheet"
>
<style>
<style>
body
{
body
{
padding-top
:
60px
;
/* 60px to make the container go all the way to the bottom of the topbar */
padding-top
:
60px
;
/* 60px to make the container go all the way to the bottom of the topbar */
...
@@ -60,19 +60,19 @@
...
@@ -60,19 +60,19 @@
================================================== -->
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<!-- Placed at the end of the document so the pages load faster -->
<script
type=
"text/javascript"
src=
"http://platform.twitter.com/widgets.js"
></script>
<script
type=
"text/javascript"
src=
"http://platform.twitter.com/widgets.js"
></script>
<script
src=
"../js/tests/vendor/jquery.js"
></script>
<script
src=
"../
assets/
js/tests/vendor/jquery.js"
></script>
<script
src=
"../js/bootstrap-transition.js"
></script>
<script
src=
"../
assets/
js/bootstrap-transition.js"
></script>
<script
src=
"../js/bootstrap-alert.js"
></script>
<script
src=
"../
assets/
js/bootstrap-alert.js"
></script>
<script
src=
"../js/bootstrap-modal.js"
></script>
<script
src=
"../
assets/
js/bootstrap-modal.js"
></script>
<script
src=
"../js/bootstrap-dropdown.js"
></script>
<script
src=
"../
assets/
js/bootstrap-dropdown.js"
></script>
<script
src=
"../js/bootstrap-scrollspy.js"
></script>
<script
src=
"../
assets/
js/bootstrap-scrollspy.js"
></script>
<script
src=
"../js/bootstrap-tab.js"
></script>
<script
src=
"../
assets/
js/bootstrap-tab.js"
></script>
<script
src=
"../js/bootstrap-tooltip.js"
></script>
<script
src=
"../
assets/
js/bootstrap-tooltip.js"
></script>
<script
src=
"../js/bootstrap-popover.js"
></script>
<script
src=
"../
assets/
js/bootstrap-popover.js"
></script>
<script
src=
"../js/bootstrap-button.js"
></script>
<script
src=
"../
assets/
js/bootstrap-button.js"
></script>
<script
src=
"../js/bootstrap-collapse.js"
></script>
<script
src=
"../
assets/
js/bootstrap-collapse.js"
></script>
<script
src=
"../js/bootstrap-carousel.js"
></script>
<script
src=
"../
assets/
js/bootstrap-carousel.js"
></script>
<script
src=
"../js/bootstrap-typeahead.js"
></script>
<script
src=
"../
assets/
js/bootstrap-typeahead.js"
></script>
</body>
</body>
</html>
</html>
docs/templates/pages/examples.mustache
View file @
fd49d4a4
...
@@ -8,21 +8,21 @@
...
@@ -8,21 +8,21 @@
<ul
class=
"thumbnails bootstrap-examples"
>
<ul
class=
"thumbnails bootstrap-examples"
>
<li
class=
"span4"
>
<li
class=
"span4"
>
<a
class=
"thumbnail"
href=
"
../
examples/hero.html"
>
<a
class=
"thumbnail"
href=
"examples/hero.html"
>
<img
src=
"assets/img/examples/bootstrap-example-hero.jpg"
alt=
""
>
<img
src=
"assets/img/examples/bootstrap-example-hero.jpg"
alt=
""
>
</a>
</a>
<h3>
{{
_i
}}
Basic marketing site
{{/
i
}}
</h3>
<h3>
{{
_i
}}
Basic marketing site
{{/
i
}}
</h3>
<p>
{{
_i
}}
Featuring a hero unit for a primary message and three supporting elements.
{{/
i
}}
</p>
<p>
{{
_i
}}
Featuring a hero unit for a primary message and three supporting elements.
{{/
i
}}
</p>
</li>
</li>
<li
class=
"span4"
>
<li
class=
"span4"
>
<a
class=
"thumbnail"
href=
"
../
examples/fluid.html"
>
<a
class=
"thumbnail"
href=
"examples/fluid.html"
>
<img
src=
"assets/img/examples/bootstrap-example-fluid.jpg"
alt=
""
>
<img
src=
"assets/img/examples/bootstrap-example-fluid.jpg"
alt=
""
>
</a>
</a>
<h3>
{{
_i
}}
Fluid layout
{{/
i
}}
</h3>
<h3>
{{
_i
}}
Fluid layout
{{/
i
}}
</h3>
<p>
{{
_i
}}
Uses are new responsive, fluid grid system to create seamless liquid layout.
{{/
i
}}
</p>
<p>
{{
_i
}}
Uses are new responsive, fluid grid system to create seamless liquid layout.
{{/
i
}}
</p>
</li>
</li>
<li
class=
"span4"
>
<li
class=
"span4"
>
<a
class=
"thumbnail"
href=
"
../
examples/starter-template.html"
>
<a
class=
"thumbnail"
href=
"examples/starter-template.html"
>
<img
src=
"assets/img/examples/bootstrap-example-starter.jpg"
alt=
""
>
<img
src=
"assets/img/examples/bootstrap-example-starter.jpg"
alt=
""
>
</a>
</a>
<h3>
{{
_i
}}
Starter template
{{/
i
}}
</h3>
<h3>
{{
_i
}}
Starter template
{{/
i
}}
</h3>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment