Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap-sass.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas McDonald <tom@conceptcoding.co.uk>2012-02-06 17:38:26 +0400
committerThomas McDonald <tom@conceptcoding.co.uk>2012-02-06 17:38:26 +0400
commit4ae4653ff6e272ff6f477aa9af0e5eeba11e4de7 (patch)
tree3c80522658cd4db2e04402cd28a32deac595fcf4 /templates
parent1e3fa24132af3178807dc3cdcc51360d5cc77dd3 (diff)
Update bootstrap-sass to 2.0.0v2.0.0
Now with support for Compass!
Diffstat (limited to 'templates')
-rw-r--r--templates/project/manifest.rb18
-rw-r--r--templates/project/styles.scss5
2 files changed, 23 insertions, 0 deletions
diff --git a/templates/project/manifest.rb b/templates/project/manifest.rb
new file mode 100644
index 00000000..32095d8b
--- /dev/null
+++ b/templates/project/manifest.rb
@@ -0,0 +1,18 @@
+description "Bootstrap for SASS"
+
+# Stylesheet importing bootstrap
+stylesheet 'styles.scss'
+
+#
+# Other Bootstrap assets
+basedir = '../../vendor/assets'
+
+# Glyphicons sprites
+%w(glyphicons-halflings glyphicons-halflings-white).each do |file|
+ image "#{basedir}/images/#{file}.png", :to => "#{file}.png"
+end
+
+# Javascripts
+%w(alert button carousel collapse dropdown modal popover scrollspy tab tooltip transition typeahead).each do |file|
+ javascript "#{basedir}/javascripts/bootstrap-#{file}.js", :to => "bootstrap-#{file}.js"
+end \ No newline at end of file
diff --git a/templates/project/styles.scss b/templates/project/styles.scss
new file mode 100644
index 00000000..d055aeba
--- /dev/null
+++ b/templates/project/styles.scss
@@ -0,0 +1,5 @@
+// I gather this file is a starting point for the project.
+@import "bootstrap";
+
+// Include responsive Bootstrap styles
+// @import "bootstrap-responsive"; \ No newline at end of file