How can i use Bootstrap Themes?
Added by Brane D about 10 years ago
Hello,
i have downloaded a bootstrap theme, that i like to use. I read that Wt support bootstrap themes. My question is, how do include those files?
Is there any tutorial here around?
thx
Replies (2)
RE: How can i use Bootstrap Themes? - Added by Georgiy Gluhoedov about 10 years ago
Hey, if you're using Wt 3.3.3, just write code.
#include <Wt/WBootstrapTheme>
WBootstrapTheme* bootstrapTheme = new WBootstrapTheme();
bootstrapTheme->setVersion(WBootstrapTheme::Version3);
app->setTheme(bootstrapTheme);
Links:
http://www.webtoolkit.eu/widgets/layout/
http://www.redmine.org/guide
And see the documentation for libraries.
RE: How can i use Bootstrap Themes? - Added by Brane D about 10 years ago
Hello Georgiy,
thanks for your answer. It works great.