Project

General

Profile

BDHow can i use Bootstrap Themes?

Added by Brane D almost 12 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)

GG RE: How can i use Bootstrap Themes? - Added by Georgiy Gluhoedov almost 12 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.

BD RE: How can i use Bootstrap Themes? - Added by Brane D almost 12 years ago

Hello Georgiy,

thanks for your answer. It works great.

    (1-2/2)