Which theme uses concrete5.org

Permalink 1 user found helpful
Hiya there.

Just wondering which theme the website concrete5.org is using, like that a lot.

Regards
Prof.P

profp30
 
Mnkras replied on at Permalink Reply
Mnkras
its a custom theme made by the concrete5.org core team,

i don't think you can buy it ;)
profp30 replied on at Permalink Reply
profp30
Alright, thanks.

Another question: do you know how to change the design of the standard log-in page? The design of the templates never apply to the log-in page!?

Regards
Prof.P
cannonf700 replied on at Permalink Reply
cannonf700
go to:
root/config/site_theme_paths.php you'll find this code. change "yourtheme" to the name of the theme you are using. Then remove the // from the front of the pages that you want to use your theme for.

/*

$v = View::getInstance();

$v->setThemeByPath('/login', "yourtheme");
// $v->setThemeByPath('/403', "yourtheme");
// $v->setThemeByPath('/register', "yourtheme");
// $v->setThemeByPath('/dashboard', "yourtheme");

*/

so in the end you would end up with this:

$v = View::getInstance();

$v->setThemeByPath('/login', "yourtheme");
$v->setThemeByPath('/403', "yourtheme");
$v->setThemeByPath('/register', "yourtheme");
// $v->setThemeByPath('/dashboard', "yourtheme");

This would output your theme for the login, 403 redirect, and the register page but not the dashboard.

cheers!
profp30 replied on at Permalink Reply
profp30
Thanks for the response,
great stuff.

But is there any reason why this is static?
cannonf700 replied on at Permalink Reply
cannonf700
What this does is pull the view.php file from your theme. If you want to customize this even further then add a page called login.php to root/single_page
then customize away!
profp30 replied on at Permalink Reply
profp30
At least do you know a template which resembles the one on c5.org?

Cheers,
Prof.P