diff --git a/config/config.dev.yml b/config/config.dev.yml index a0e3cd3a..af991fb8 100755 --- a/config/config.dev.yml +++ b/config/config.dev.yml @@ -329,7 +329,7 @@ themes: # # This theme will use the default bootstrap styling for DSpace components # - name: BASE_THEME_NAME # - - name: 'custom' + - name: 'dspace' headTags: - tagName: link attributes: diff --git a/src/themes/custom/assets/images/PEDSnetLogo.png b/src/themes/custom/assets/images/PEDSnetLogo.png new file mode 100644 index 00000000..98adbf55 Binary files /dev/null and b/src/themes/custom/assets/images/PEDSnetLogo.png differ diff --git a/src/themes/eager-themes.module.ts b/src/themes/eager-themes.module.ts index e5676c95..4a46595f 100755 --- a/src/themes/eager-themes.module.ts +++ b/src/themes/eager-themes.module.ts @@ -1,6 +1,6 @@ import { NgModule } from '@angular/core'; -// import { EagerThemeModule as DSpaceEagerThemeModule } from './dspace/eager-theme.module'; -import { EagerThemeModule as CustomEagerThemeModule } from './custom/eager-theme.module'; +import { EagerThemeModule as DSpaceEagerThemeModule } from './dspace/eager-theme.module'; +// import { EagerThemeModule as CustomEagerThemeModule } from './custom/eager-theme.module'; /** * This module bundles the eager theme modules for all available themes. @@ -11,8 +11,8 @@ import { EagerThemeModule as CustomEagerThemeModule } from './custom/eager-theme */ @NgModule({ imports: [ - // DSpaceEagerThemeModule, - CustomEagerThemeModule, + DSpaceEagerThemeModule, + // CustomEagerThemeModule, ], }) export class EagerThemesModule {