From 2539932e16129992a2c0889b4ff527c265a8e2c7 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Thu, 27 May 2021 15:59:55 +0200 Subject: Instance homepage support (#4007) * Prepare homepage parsers * Add ability to update instance hompage * Add ability to set homepage as landing page * Add homepage preview in admin * Dynamically update left menu for homepage * Inject home content in homepage * Add videos list and channel miniature custom markup * Remove unused elements in markup service --- client/src/app/+home/home.module.ts | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 client/src/app/+home/home.module.ts (limited to 'client/src/app/+home/home.module.ts') diff --git a/client/src/app/+home/home.module.ts b/client/src/app/+home/home.module.ts new file mode 100644 index 000000000..102cdc296 --- /dev/null +++ b/client/src/app/+home/home.module.ts @@ -0,0 +1,25 @@ +import { NgModule } from '@angular/core' +import { SharedCustomMarkupModule } from '@app/shared/shared-custom-markup' +import { SharedMainModule } from '@app/shared/shared-main' +import { HomeRoutingModule } from './home-routing.module' +import { HomeComponent } from './home.component' + +@NgModule({ + imports: [ + HomeRoutingModule, + + SharedMainModule, + SharedCustomMarkupModule + ], + + declarations: [ + HomeComponent + ], + + exports: [ + HomeComponent + ], + + providers: [ ] +}) +export class HomeModule { } -- cgit v1.2.3