luceos I deleted cache, i have run all gulp actions.
In compiled forum js file I got this, but nothing working.
I just got blank page except discussions list.
Header with logo, search, notifications and profile working normally.
System.register('themer/main', ['flarum/extend', 'flarum/app', 'flarum/components/IndexPage'], function (_export) {
'use strict';
var extend, override, app, IndexPage;
return {
setters: [function (_flarumExtend) {
extend = _flarumExtend.extend;
override = _flarumExtend.override;
}, function (_flarumApp) {
app = _flarumApp['default'];
}, function (_flarumComponentsIndexPage) {
IndexPage = _flarumComponentsIndexPage['default'];
}],
execute: function () {
override(IndexPage.prototype, 'view', function () {
return m(
'div',
{ className: 'IndexPage' },
'INDEX PAGE THEMER',
this.hero(),
m(
'div',
{ className: 'container' },
m(
'nav',
{ className: 'IndexPage-nav sideNav' },
m(
'ul',
null,
listItems(this.sidebarItems().toArray())
)
),
m(
'div',
{ className: 'IndexPage-results sideNavOffset' },
m(
'div',
{ className: 'IndexPage-toolbar' },
m(
'ul',
{ className: 'IndexPage-toolbar-view' },
listItems(this.viewItems().toArray())
),
m(
'ul',
{ className: 'IndexPage-toolbar-action' },
listItems(this.actionItems().toArray())
)
),
app.cache.discussionList.render()
)
)
);
});
}
};
});
;