Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I just came across Twitter Bootstrap today, on SO. I have skimmed through some online tutorials and if my understanding so far is correct, using the TB essentially consists of:

  1. Downloading TB, extracting CSS files etc
  2. Referencing the required CSS, JS files in your HTML doc and using the defined CSS patterns

I want to use Twitter Bootstrap with Symfony2. Given my understanding of how to use TB I thought it would be relatively easy to use it with Symfony, so I was quite suprised to see that there are (actually several) Bundles to use with Symfony.

So my questions are:

  1. Why is a Bundle needed to use Twitter Bootstrap with Symfony2? - will the method I explained above not work (i.e. adding the references directly in a twig template)?

  2. Since there are several Twitter Bootstrap Bundles available (at last count there are 3), which is the easiest to use (it has to be one that is actively supported with recent commits, and not a dead project)

share|improve this question

2 Answers

up vote 15 down vote accepted

I'm pretty sure these Bundles are great, but they have advantages and drawbacks. You could also use TB without a Bundle directly in your project. That's what I personally do, that way:

  • git clone TB in web/ (to get latest updates and keep updated)
  • I directly call bootstrap.less in my twig templates with Assetic and the less filter. That way, I can create my own .less files that @imports TB and use their astonishing mixins for example.

It's really powerful this way. Coupled with yui-compressor, when I use Assetic in no-debug mode, all my js and less files are compiled into one single .css output and one single .js output. And you could benefit from all TB functionalities, in .less, not .css

share|improve this answer
Thanks for your prompt answer. You are a life saver!. I was tearing my hair out, as to which direction to go. When you have a moment, could you please elaborate a little bit more?. Small snippet showing a twig template using Assetic, yui-compressor etc, required config settings etc. will be superb, as a lot of this is new technology for me. Thanks – Homunculus Reticulli Aug 14 '12 at 13:33
1  
This cookbook should be perfect for you: symfony.com/doc/current/cookbook/assetic/yuicompressor.html ;) – guillaumepotier Aug 14 '12 at 14:00
+1 for the link. – Homunculus Reticulli Aug 14 '12 at 16:03
1  
Some of the bundles are useful, even if you use bootstrap directly. You can, for example, borrow the form themes in Twig and use them directly in your project. – Acyra Oct 19 '12 at 19:07

You can use Twitter Boostrap (TB) to only add css to your project. And then, you have a starting point to do something more visual than started from scratch. As you described in the first part.

But, you can also retrieve more interesting stuff from a Bundle which handle template integration with TB. For example:

For example, with symfony 1.4 (I know this post talks about sf2), you have a plugin that can add a new theme to the admin generator to have a nice TB integration instead of the default. I know there is no official admin generator in sf2 but it can be used for CRUD.

One other thing that can be true since symfony 1.0, not all bundles are very well implemented, developped, maintained, tested, documented, etc .. (except thoses from the core team (FOS* Bundle, Doctrine, Propel, etc ..)). So I recommend you to test them all, see if one of them fit your need, otherwise take inspiration to improve them (they are almost all on github) or build your own.

And btw, there are many Bundle ..

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.