*/
public MainLayoutController createController(UserRequest ureq, WindowControl wControl) {
RepositoryManager rm = RepositoryManager.getInstance();
RepositoryEntry entry = rm.lookupRepositoryEntryBySoftkey(repositorySoftKey, true);
ICourse course = CourseFactory.loadCourse(entry.getOlatResource());
RunMainController c = new RunMainController(ureq, wControl, course, null, false, true);
// needed for css style reasons: a site own the whole content area and needs either to use a MenuAndToolController for the 3-columns layout or,
// like here, the contentOnlyController
//ContentOnlyController coc = new ContentOnlyController(ureq, wControl, c);
return c;
}