├── .editorconfig ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── angular.json ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.e2e.json ├── package.json ├── scripts └── import.js ├── src ├── app │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── call-to-action.module.ts │ ├── call-to-action │ │ ├── call-to-action-01.component.css │ │ ├── call-to-action-01.component.html │ │ ├── call-to-action-01.component.ts │ │ ├── call-to-action-01.spec.ts │ │ ├── call-to-action-02.component.css │ │ ├── call-to-action-02.component.html │ │ ├── call-to-action-02.component.ts │ │ ├── call-to-action-02.spec.ts │ │ ├── call-to-action-03.component.css │ │ ├── call-to-action-03.component.html │ │ ├── call-to-action-03.component.ts │ │ ├── call-to-action-03.spec.ts │ │ ├── call-to-action-04.component.css │ │ ├── call-to-action-04.component.html │ │ ├── call-to-action-04.component.ts │ │ ├── call-to-action-04.spec.ts │ │ ├── call-to-action-05.component.css │ │ ├── call-to-action-05.component.html │ │ ├── call-to-action-05.component.ts │ │ ├── call-to-action-05.spec.ts │ │ ├── call-to-action-06.component.css │ │ ├── call-to-action-06.component.html │ │ ├── call-to-action-06.component.ts │ │ ├── call-to-action-06.spec.ts │ │ ├── call-to-action-07.component.css │ │ ├── call-to-action-07.component.html │ │ ├── call-to-action-07.component.ts │ │ ├── call-to-action-07.spec.ts │ │ ├── call-to-action-08.component.css │ │ ├── call-to-action-08.component.html │ │ ├── call-to-action-08.component.ts │ │ ├── call-to-action-08.spec.ts │ │ ├── call-to-action-09.component.css │ │ ├── call-to-action-09.component.html │ │ ├── call-to-action-09.component.ts │ │ ├── call-to-action-09.spec.ts │ │ ├── call-to-action-10.component.css │ │ ├── call-to-action-10.component.html │ │ ├── call-to-action-10.component.ts │ │ ├── call-to-action-10.spec.ts │ │ ├── call-to-action-11.component.css │ │ ├── call-to-action-11.component.html │ │ ├── call-to-action-11.component.ts │ │ ├── call-to-action-11.spec.ts │ │ ├── call-to-action-12.component.css │ │ ├── call-to-action-12.component.html │ │ ├── call-to-action-12.component.ts │ │ ├── call-to-action-12.spec.ts │ │ ├── call-to-action-13.component.css │ │ ├── call-to-action-13.component.html │ │ ├── call-to-action-13.component.ts │ │ ├── call-to-action-13.spec.ts │ │ ├── call-to-action-14.component.css │ │ ├── call-to-action-14.component.html │ │ ├── call-to-action-14.component.ts │ │ ├── call-to-action-14.spec.ts │ │ ├── call-to-action-15.component.css │ │ ├── call-to-action-15.component.html │ │ ├── call-to-action-15.component.ts │ │ ├── call-to-action-15.spec.ts │ │ ├── call-to-action-16.component.css │ │ ├── call-to-action-16.component.html │ │ ├── call-to-action-16.component.ts │ │ ├── call-to-action-16.spec.ts │ │ ├── call-to-action-17.component.css │ │ ├── call-to-action-17.component.html │ │ ├── call-to-action-17.component.ts │ │ ├── call-to-action-17.spec.ts │ │ ├── call-to-action-18.component.css │ │ ├── call-to-action-18.component.html │ │ ├── call-to-action-18.component.ts │ │ ├── call-to-action-18.spec.ts │ │ ├── call-to-action-19.component.css │ │ ├── call-to-action-19.component.html │ │ ├── call-to-action-19.component.ts │ │ ├── call-to-action-19.spec.ts │ │ ├── call-to-action-20.component.css │ │ ├── call-to-action-20.component.html │ │ ├── call-to-action-20.component.ts │ │ ├── call-to-action-20.spec.ts │ │ ├── call-to-action-21.component.css │ │ ├── call-to-action-21.component.html │ │ ├── call-to-action-21.component.ts │ │ ├── call-to-action-21.spec.ts │ │ ├── call-to-action-22.component.css │ │ ├── call-to-action-22.component.html │ │ ├── call-to-action-22.component.ts │ │ └── call-to-action-22.spec.ts │ ├── contacts.module.ts │ ├── contacts │ │ ├── contacts-01.component.css │ │ ├── contacts-01.component.html │ │ ├── contacts-01.component.ts │ │ ├── contacts-01.spec.ts │ │ ├── contacts-02.component.css │ │ ├── contacts-02.component.html │ │ ├── contacts-02.component.ts │ │ ├── contacts-02.spec.ts │ │ ├── contacts-03.component.css │ │ ├── contacts-03.component.html │ │ ├── contacts-03.component.ts │ │ ├── contacts-03.spec.ts │ │ ├── contacts-04.component.css │ │ ├── contacts-04.component.html │ │ ├── contacts-04.component.ts │ │ ├── contacts-04.spec.ts │ │ ├── contacts-05.component.css │ │ ├── contacts-05.component.html │ │ ├── contacts-05.component.ts │ │ ├── contacts-05.spec.ts │ │ ├── contacts-06.component.css │ │ ├── contacts-06.component.html │ │ ├── contacts-06.component.ts │ │ ├── contacts-06.spec.ts │ │ ├── contacts-07.component.css │ │ ├── contacts-07.component.html │ │ ├── contacts-07.component.ts │ │ ├── contacts-07.spec.ts │ │ ├── contacts-08.component.css │ │ ├── contacts-08.component.html │ │ ├── contacts-08.component.ts │ │ ├── contacts-08.spec.ts │ │ ├── contacts-09.component.css │ │ ├── contacts-09.component.html │ │ ├── contacts-09.component.ts │ │ ├── contacts-09.spec.ts │ │ ├── contacts-10.component.css │ │ ├── contacts-10.component.html │ │ ├── contacts-10.component.ts │ │ └── contacts-10.spec.ts │ ├── contents.module.ts │ ├── contents │ │ ├── contents-01.component.css │ │ ├── contents-01.component.html │ │ ├── contents-01.component.ts │ │ ├── contents-01.spec.ts │ │ ├── contents-02.component.css │ │ ├── contents-02.component.html │ │ ├── contents-02.component.ts │ │ ├── contents-02.spec.ts │ │ ├── contents-03.component.css │ │ ├── contents-03.component.html │ │ ├── contents-03.component.ts │ │ ├── contents-03.spec.ts │ │ ├── contents-04.component.css │ │ ├── contents-04.component.html │ │ ├── contents-04.component.ts │ │ ├── contents-04.spec.ts │ │ ├── contents-05.component.css │ │ ├── contents-05.component.html │ │ ├── contents-05.component.ts │ │ ├── contents-05.spec.ts │ │ ├── contents-06.component.css │ │ ├── contents-06.component.html │ │ ├── contents-06.component.ts │ │ ├── contents-06.spec.ts │ │ ├── contents-07.component.css │ │ ├── contents-07.component.html │ │ ├── contents-07.component.ts │ │ ├── contents-07.spec.ts │ │ ├── contents-08.component.css │ │ ├── contents-08.component.html │ │ ├── contents-08.component.ts │ │ ├── contents-08.spec.ts │ │ ├── contents-09.component.css │ │ ├── contents-09.component.html │ │ ├── contents-09.component.ts │ │ ├── contents-09.spec.ts │ │ ├── contents-10.component.css │ │ ├── contents-10.component.html │ │ ├── contents-10.component.ts │ │ ├── contents-10.spec.ts │ │ ├── contents-11.component.css │ │ ├── contents-11.component.html │ │ ├── contents-11.component.ts │ │ ├── contents-11.spec.ts │ │ ├── contents-12.component.css │ │ ├── contents-12.component.html │ │ ├── contents-12.component.ts │ │ ├── contents-12.spec.ts │ │ ├── contents-13.component.css │ │ ├── contents-13.component.html │ │ ├── contents-13.component.ts │ │ ├── contents-13.spec.ts │ │ ├── contents-14.component.css │ │ ├── contents-14.component.html │ │ ├── contents-14.component.ts │ │ ├── contents-14.spec.ts │ │ ├── contents-15.component.css │ │ ├── contents-15.component.html │ │ ├── contents-15.component.ts │ │ ├── contents-15.spec.ts │ │ ├── contents-16.component.css │ │ ├── contents-16.component.html │ │ ├── contents-16.component.ts │ │ ├── contents-16.spec.ts │ │ ├── contents-17.component.css │ │ ├── contents-17.component.html │ │ ├── contents-17.component.ts │ │ ├── contents-17.spec.ts │ │ ├── contents-18.component.css │ │ ├── contents-18.component.html │ │ ├── contents-18.component.ts │ │ ├── contents-18.spec.ts │ │ ├── contents-19.component.css │ │ ├── contents-19.component.html │ │ ├── contents-19.component.ts │ │ ├── contents-19.spec.ts │ │ ├── contents-20.component.css │ │ ├── contents-20.component.html │ │ ├── contents-20.component.ts │ │ ├── contents-20.spec.ts │ │ ├── contents-21.component.css │ │ ├── contents-21.component.html │ │ ├── contents-21.component.ts │ │ ├── contents-21.spec.ts │ │ ├── contents-22.component.css │ │ ├── contents-22.component.html │ │ ├── contents-22.component.ts │ │ ├── contents-22.spec.ts │ │ ├── contents-23.component.css │ │ ├── contents-23.component.html │ │ ├── contents-23.component.ts │ │ ├── contents-23.spec.ts │ │ ├── contents-24.component.css │ │ ├── contents-24.component.html │ │ ├── contents-24.component.ts │ │ ├── contents-24.spec.ts │ │ ├── contents-25.component.css │ │ ├── contents-25.component.html │ │ ├── contents-25.component.ts │ │ ├── contents-25.spec.ts │ │ ├── contents-26.component.css │ │ ├── contents-26.component.html │ │ ├── contents-26.component.ts │ │ ├── contents-26.spec.ts │ │ ├── contents-27.component.css │ │ ├── contents-27.component.html │ │ ├── contents-27.component.ts │ │ ├── contents-27.spec.ts │ │ ├── contents-28.component.css │ │ ├── contents-28.component.html │ │ ├── contents-28.component.ts │ │ ├── contents-28.spec.ts │ │ ├── contents-29.component.css │ │ ├── contents-29.component.html │ │ ├── contents-29.component.ts │ │ ├── contents-29.spec.ts │ │ ├── contents-30.component.css │ │ ├── contents-30.component.html │ │ ├── contents-30.component.ts │ │ ├── contents-30.spec.ts │ │ ├── contents-31.component.css │ │ ├── contents-31.component.html │ │ ├── contents-31.component.ts │ │ ├── contents-31.spec.ts │ │ ├── contents-32.component.css │ │ ├── contents-32.component.html │ │ ├── contents-32.component.ts │ │ ├── contents-32.spec.ts │ │ ├── contents-33.component.css │ │ ├── contents-33.component.html │ │ ├── contents-33.component.ts │ │ ├── contents-33.spec.ts │ │ ├── contents-34.component.css │ │ ├── contents-34.component.html │ │ ├── contents-34.component.ts │ │ ├── contents-34.spec.ts │ │ ├── contents-35.component.css │ │ ├── contents-35.component.html │ │ ├── contents-35.component.ts │ │ └── contents-35.spec.ts │ ├── features.module.ts │ ├── features │ │ ├── features-01.component.css │ │ ├── features-01.component.html │ │ ├── features-01.component.ts │ │ ├── features-01.spec.ts │ │ ├── features-02.component.css │ │ ├── features-02.component.html │ │ ├── features-02.component.ts │ │ ├── features-02.spec.ts │ │ ├── features-03.component.css │ │ ├── features-03.component.html │ │ ├── features-03.component.ts │ │ ├── features-03.spec.ts │ │ ├── features-04.component.css │ │ ├── features-04.component.html │ │ ├── features-04.component.ts │ │ ├── features-04.spec.ts │ │ ├── features-05.component.css │ │ ├── features-05.component.html │ │ ├── features-05.component.ts │ │ ├── features-05.spec.ts │ │ ├── features-06.component.css │ │ ├── features-06.component.html │ │ ├── features-06.component.ts │ │ ├── features-06.spec.ts │ │ ├── features-07.component.css │ │ ├── features-07.component.html │ │ ├── features-07.component.ts │ │ ├── features-07.spec.ts │ │ ├── features-08.component.css │ │ ├── features-08.component.html │ │ ├── features-08.component.ts │ │ ├── features-08.spec.ts │ │ ├── features-09.component.css │ │ ├── features-09.component.html │ │ ├── features-09.component.ts │ │ ├── features-09.spec.ts │ │ ├── features-10.component.css │ │ ├── features-10.component.html │ │ ├── features-10.component.ts │ │ ├── features-10.spec.ts │ │ ├── features-11.component.css │ │ ├── features-11.component.html │ │ ├── features-11.component.ts │ │ ├── features-11.spec.ts │ │ ├── features-12.component.css │ │ ├── features-12.component.html │ │ ├── features-12.component.ts │ │ ├── features-12.spec.ts │ │ ├── features-13.component.css │ │ ├── features-13.component.html │ │ ├── features-13.component.ts │ │ ├── features-13.spec.ts │ │ ├── features-14.component.css │ │ ├── features-14.component.html │ │ ├── features-14.component.ts │ │ ├── features-14.spec.ts │ │ ├── features-15.component.css │ │ ├── features-15.component.html │ │ ├── features-15.component.ts │ │ ├── features-15.spec.ts │ │ ├── features-16.component.css │ │ ├── features-16.component.html │ │ ├── features-16.component.ts │ │ ├── features-16.spec.ts │ │ ├── features-17.component.css │ │ ├── features-17.component.html │ │ ├── features-17.component.ts │ │ ├── features-17.spec.ts │ │ ├── features-18.component.css │ │ ├── features-18.component.html │ │ ├── features-18.component.ts │ │ ├── features-18.spec.ts │ │ ├── features-19.component.css │ │ ├── features-19.component.html │ │ ├── features-19.component.ts │ │ ├── features-19.spec.ts │ │ ├── features-20.component.css │ │ ├── features-20.component.html │ │ ├── features-20.component.ts │ │ ├── features-20.spec.ts │ │ ├── features-21.component.css │ │ ├── features-21.component.html │ │ ├── features-21.component.ts │ │ ├── features-21.spec.ts │ │ ├── features-22.component.css │ │ ├── features-22.component.html │ │ ├── features-22.component.ts │ │ ├── features-22.spec.ts │ │ ├── features-23.component.css │ │ ├── features-23.component.html │ │ ├── features-23.component.ts │ │ ├── features-23.spec.ts │ │ ├── features-24.component.css │ │ ├── features-24.component.html │ │ ├── features-24.component.ts │ │ ├── features-24.spec.ts │ │ ├── features-25.component.css │ │ ├── features-25.component.html │ │ ├── features-25.component.ts │ │ ├── features-25.spec.ts │ │ ├── features-26.component.css │ │ ├── features-26.component.html │ │ ├── features-26.component.ts │ │ ├── features-26.spec.ts │ │ ├── features-27.component.css │ │ ├── features-27.component.html │ │ ├── features-27.component.ts │ │ ├── features-27.spec.ts │ │ ├── features-28.component.css │ │ ├── features-28.component.html │ │ ├── features-28.component.ts │ │ ├── features-28.spec.ts │ │ ├── features-29.component.css │ │ ├── features-29.component.html │ │ ├── features-29.component.ts │ │ ├── features-29.spec.ts │ │ ├── features-30.component.css │ │ ├── features-30.component.html │ │ ├── features-30.component.ts │ │ ├── features-30.spec.ts │ │ ├── features-31.component.css │ │ ├── features-31.component.html │ │ ├── features-31.component.ts │ │ ├── features-31.spec.ts │ │ ├── features-32.component.css │ │ ├── features-32.component.html │ │ ├── features-32.component.ts │ │ ├── features-32.spec.ts │ │ ├── features-33.component.css │ │ ├── features-33.component.html │ │ ├── features-33.component.ts │ │ └── features-33.spec.ts │ ├── footers.module.ts │ ├── footers │ │ ├── footers-01.component.css │ │ ├── footers-01.component.html │ │ ├── footers-01.component.ts │ │ ├── footers-01.spec.ts │ │ ├── footers-02.component.css │ │ ├── footers-02.component.html │ │ ├── footers-02.component.ts │ │ ├── footers-02.spec.ts │ │ ├── footers-03.component.css │ │ ├── footers-03.component.html │ │ ├── footers-03.component.ts │ │ ├── footers-03.spec.ts │ │ ├── footers-04.component.css │ │ ├── footers-04.component.html │ │ ├── footers-04.component.ts │ │ ├── footers-04.spec.ts │ │ ├── footers-05.component.css │ │ ├── footers-05.component.html │ │ ├── footers-05.component.ts │ │ ├── footers-05.spec.ts │ │ ├── footers-06.component.css │ │ ├── footers-06.component.html │ │ ├── footers-06.component.ts │ │ ├── footers-06.spec.ts │ │ ├── footers-07.component.css │ │ ├── footers-07.component.html │ │ ├── footers-07.component.ts │ │ ├── footers-07.spec.ts │ │ ├── footers-08.component.css │ │ ├── footers-08.component.html │ │ ├── footers-08.component.ts │ │ ├── footers-08.spec.ts │ │ ├── footers-09.component.css │ │ ├── footers-09.component.html │ │ ├── footers-09.component.ts │ │ ├── footers-09.spec.ts │ │ ├── footers-10.component.css │ │ ├── footers-10.component.html │ │ ├── footers-10.component.ts │ │ ├── footers-10.spec.ts │ │ ├── footers-11.component.css │ │ ├── footers-11.component.html │ │ ├── footers-11.component.ts │ │ ├── footers-11.spec.ts │ │ ├── footers-12.component.css │ │ ├── footers-12.component.html │ │ ├── footers-12.component.ts │ │ └── footers-12.spec.ts │ ├── forms.module.ts │ ├── forms │ │ ├── forms-01.component.css │ │ ├── forms-01.component.html │ │ ├── forms-01.component.ts │ │ ├── forms-01.spec.ts │ │ ├── forms-02.component.css │ │ ├── forms-02.component.html │ │ ├── forms-02.component.ts │ │ ├── forms-02.spec.ts │ │ ├── forms-03.component.css │ │ ├── forms-03.component.html │ │ ├── forms-03.component.ts │ │ ├── forms-03.spec.ts │ │ ├── forms-04.component.css │ │ ├── forms-04.component.html │ │ ├── forms-04.component.ts │ │ ├── forms-04.spec.ts │ │ ├── forms-05.component.css │ │ ├── forms-05.component.html │ │ ├── forms-05.component.ts │ │ ├── forms-05.spec.ts │ │ ├── forms-06.component.css │ │ ├── forms-06.component.html │ │ ├── forms-06.component.ts │ │ ├── forms-06.spec.ts │ │ ├── forms-07.component.css │ │ ├── forms-07.component.html │ │ ├── forms-07.component.ts │ │ ├── forms-07.spec.ts │ │ ├── forms-08.component.css │ │ ├── forms-08.component.html │ │ ├── forms-08.component.ts │ │ ├── forms-08.spec.ts │ │ ├── forms-09.component.css │ │ ├── forms-09.component.html │ │ ├── forms-09.component.ts │ │ ├── forms-09.spec.ts │ │ ├── forms-10.component.css │ │ ├── forms-10.component.html │ │ ├── forms-10.component.ts │ │ ├── forms-10.spec.ts │ │ ├── forms-11.component.css │ │ ├── forms-11.component.html │ │ ├── forms-11.component.ts │ │ ├── forms-11.spec.ts │ │ ├── forms-12.component.css │ │ ├── forms-12.component.html │ │ ├── forms-12.component.ts │ │ └── forms-12.spec.ts │ ├── headers.module.ts │ ├── headers │ │ ├── headers-01.component.css │ │ ├── headers-01.component.html │ │ ├── headers-01.component.ts │ │ ├── headers-01.spec.ts │ │ ├── headers-02.component.css │ │ ├── headers-02.component.html │ │ ├── headers-02.component.ts │ │ ├── headers-02.spec.ts │ │ ├── headers-03.component.css │ │ ├── headers-03.component.html │ │ ├── headers-03.component.ts │ │ ├── headers-03.spec.ts │ │ ├── headers-04.component.css │ │ ├── headers-04.component.html │ │ ├── headers-04.component.ts │ │ ├── headers-04.spec.ts │ │ ├── headers-05.component.css │ │ ├── headers-05.component.html │ │ ├── headers-05.component.ts │ │ ├── headers-05.spec.ts │ │ ├── headers-06.component.css │ │ ├── headers-06.component.html │ │ ├── headers-06.component.ts │ │ ├── headers-06.spec.ts │ │ ├── headers-07.component.css │ │ ├── headers-07.component.html │ │ ├── headers-07.component.ts │ │ ├── headers-07.spec.ts │ │ ├── headers-08.component.css │ │ ├── headers-08.component.html │ │ ├── headers-08.component.ts │ │ ├── headers-08.spec.ts │ │ ├── headers-09.component.css │ │ ├── headers-09.component.html │ │ ├── headers-09.component.ts │ │ ├── headers-09.spec.ts │ │ ├── headers-10.component.css │ │ ├── headers-10.component.html │ │ ├── headers-10.component.ts │ │ ├── headers-10.spec.ts │ │ ├── headers-11.component.css │ │ ├── headers-11.component.html │ │ ├── headers-11.component.ts │ │ ├── headers-11.spec.ts │ │ ├── headers-12.component.css │ │ ├── headers-12.component.html │ │ ├── headers-12.component.ts │ │ ├── headers-12.spec.ts │ │ ├── headers-13.component.css │ │ ├── headers-13.component.html │ │ ├── headers-13.component.ts │ │ ├── headers-13.spec.ts │ │ ├── headers-14.component.css │ │ ├── headers-14.component.html │ │ ├── headers-14.component.ts │ │ ├── headers-14.spec.ts │ │ ├── headers-15.component.css │ │ ├── headers-15.component.html │ │ ├── headers-15.component.ts │ │ ├── headers-15.spec.ts │ │ ├── headers-16.component.css │ │ ├── headers-16.component.html │ │ ├── headers-16.component.ts │ │ ├── headers-16.spec.ts │ │ ├── headers-17.component.css │ │ ├── headers-17.component.html │ │ ├── headers-17.component.ts │ │ ├── headers-17.spec.ts │ │ ├── headers-18.component.css │ │ ├── headers-18.component.html │ │ ├── headers-18.component.ts │ │ ├── headers-18.spec.ts │ │ ├── headers-19.component.css │ │ ├── headers-19.component.html │ │ ├── headers-19.component.ts │ │ ├── headers-19.spec.ts │ │ ├── headers-20.component.css │ │ ├── headers-20.component.html │ │ ├── headers-20.component.ts │ │ └── headers-20.spec.ts │ ├── pages │ │ ├── call-to-action.component.ts │ │ ├── contacts.component.ts │ │ ├── contents.component.ts │ │ ├── features.component.ts │ │ ├── footers.component.ts │ │ ├── forms.component.ts │ │ ├── headers.component.ts │ │ ├── pricings.component.ts │ │ ├── teams.component.ts │ │ └── testimonials.component.ts │ ├── pricings.module.ts │ ├── pricings │ │ ├── pricings-01.component.css │ │ ├── pricings-01.component.html │ │ ├── pricings-01.component.ts │ │ ├── pricings-01.spec.ts │ │ ├── pricings-02.component.css │ │ ├── pricings-02.component.html │ │ ├── pricings-02.component.ts │ │ ├── pricings-02.spec.ts │ │ ├── pricings-03.component.css │ │ ├── pricings-03.component.html │ │ ├── pricings-03.component.ts │ │ ├── pricings-03.spec.ts │ │ ├── pricings-04.component.css │ │ ├── pricings-04.component.html │ │ ├── pricings-04.component.ts │ │ ├── pricings-04.spec.ts │ │ ├── pricings-05.component.css │ │ ├── pricings-05.component.html │ │ ├── pricings-05.component.ts │ │ ├── pricings-05.spec.ts │ │ ├── pricings-06.component.css │ │ ├── pricings-06.component.html │ │ ├── pricings-06.component.ts │ │ ├── pricings-06.spec.ts │ │ ├── pricings-07.component.css │ │ ├── pricings-07.component.html │ │ ├── pricings-07.component.ts │ │ ├── pricings-07.spec.ts │ │ ├── pricings-08.component.css │ │ ├── pricings-08.component.html │ │ ├── pricings-08.component.ts │ │ ├── pricings-08.spec.ts │ │ ├── pricings-09.component.css │ │ ├── pricings-09.component.html │ │ ├── pricings-09.component.ts │ │ ├── pricings-09.spec.ts │ │ ├── pricings-10.component.css │ │ ├── pricings-10.component.html │ │ ├── pricings-10.component.ts │ │ └── pricings-10.spec.ts │ ├── teams.module.ts │ ├── teams │ │ ├── teams-01.component.css │ │ ├── teams-01.component.html │ │ ├── teams-01.component.ts │ │ ├── teams-01.spec.ts │ │ ├── teams-02.component.css │ │ ├── teams-02.component.html │ │ ├── teams-02.component.ts │ │ ├── teams-02.spec.ts │ │ ├── teams-03.component.css │ │ ├── teams-03.component.html │ │ ├── teams-03.component.ts │ │ ├── teams-03.spec.ts │ │ ├── teams-04.component.css │ │ ├── teams-04.component.html │ │ ├── teams-04.component.ts │ │ ├── teams-04.spec.ts │ │ ├── teams-05.component.css │ │ ├── teams-05.component.html │ │ ├── teams-05.component.ts │ │ ├── teams-05.spec.ts │ │ ├── teams-06.component.css │ │ ├── teams-06.component.html │ │ ├── teams-06.component.ts │ │ ├── teams-06.spec.ts │ │ ├── teams-07.component.css │ │ ├── teams-07.component.html │ │ ├── teams-07.component.ts │ │ ├── teams-07.spec.ts │ │ ├── teams-08.component.css │ │ ├── teams-08.component.html │ │ ├── teams-08.component.ts │ │ └── teams-08.spec.ts │ ├── testimonials.module.ts │ └── testimonials │ │ ├── testimonials-01.component.css │ │ ├── testimonials-01.component.html │ │ ├── testimonials-01.component.ts │ │ ├── testimonials-01.spec.ts │ │ ├── testimonials-02.component.css │ │ ├── testimonials-02.component.html │ │ ├── testimonials-02.component.ts │ │ ├── testimonials-02.spec.ts │ │ ├── testimonials-03.component.css │ │ ├── testimonials-03.component.html │ │ ├── testimonials-03.component.ts │ │ ├── testimonials-03.spec.ts │ │ ├── testimonials-04.component.css │ │ ├── testimonials-04.component.html │ │ ├── testimonials-04.component.ts │ │ ├── testimonials-04.spec.ts │ │ ├── testimonials-05.component.css │ │ ├── testimonials-05.component.html │ │ ├── testimonials-05.component.ts │ │ ├── testimonials-05.spec.ts │ │ ├── testimonials-06.component.css │ │ ├── testimonials-06.component.html │ │ ├── testimonials-06.component.ts │ │ ├── testimonials-06.spec.ts │ │ ├── testimonials-07.component.css │ │ ├── testimonials-07.component.html │ │ ├── testimonials-07.component.ts │ │ ├── testimonials-07.spec.ts │ │ ├── testimonials-08.component.css │ │ ├── testimonials-08.component.html │ │ ├── testimonials-08.component.ts │ │ ├── testimonials-08.spec.ts │ │ ├── testimonials-09.component.css │ │ ├── testimonials-09.component.html │ │ ├── testimonials-09.component.ts │ │ ├── testimonials-09.spec.ts │ │ ├── testimonials-10.component.css │ │ ├── testimonials-10.component.html │ │ ├── testimonials-10.component.ts │ │ └── testimonials-10.spec.ts ├── assets │ ├── .gitkeep │ └── logo-angluar.png ├── browserslist ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── karma.conf.js ├── main.ts ├── polyfills.ts ├── styles.css ├── test.ts ├── tsconfig.app.json ├── tsconfig.spec.json └── tslint.json ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- 1 | # Editor configuration, see http://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | charset = utf-8 6 | indent_style = space 7 | indent_size = 2 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | max_line_length = off 13 | trim_trailing_whitespace = false 14 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See http://help.github.com/ignore-files/ for more about ignoring files. 2 | 3 | # compiled output 4 | /dist 5 | /tmp 6 | /out-tsc 7 | 8 | # dependencies 9 | /node_modules 10 | 11 | # IDEs and editors 12 | /.idea 13 | .project 14 | .classpath 15 | .c9/ 16 | *.launch 17 | .settings/ 18 | *.sublime-workspace 19 | 20 | # IDE - VSCode 21 | .vscode/* 22 | !.vscode/settings.json 23 | !.vscode/tasks.json 24 | !.vscode/launch.json 25 | !.vscode/extensions.json 26 | 27 | # misc 28 | /.sass-cache 29 | /connect.lock 30 | /coverage 31 | /libpeerconnection.log 32 | npm-debug.log 33 | yarn-error.log 34 | testem.log 35 | /typings 36 | 37 | # System Files 38 | .DS_Store 39 | Thumbs.db 40 | 41 | # Files 42 | package-lock.json 43 | npm-debug.log -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- 1 | import { AppPage } from './app.po'; 2 | 3 | describe('workspace-project App', () => { 4 | let page: AppPage; 5 | 6 | beforeEach(() => { 7 | page = new AppPage(); 8 | }); 9 | 10 | it('should display welcome message', () => { 11 | page.navigateTo(); 12 | expect(page.getParagraphText()).toEqual('Welcome to angular-froala-design-blocks!'); 13 | }); 14 | }); 15 | -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- 1 | import { browser, by, element } from 'protractor'; 2 | 3 | export class AppPage { 4 | navigateTo() { 5 | return browser.get('/'); 6 | } 7 | 8 | getParagraphText() { 9 | return element(by.css('app-root h1')).getText(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/app", 5 | "module": "commonjs", 6 | "target": "es5", 7 | "types": [ 8 | "jasmine", 9 | "jasminewd2", 10 | "node" 11 | ] 12 | } 13 | } -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- 1 | #navigator { 2 | position: sticky; 3 | top: 0; 4 | z-index: 1000; 5 | } 6 | 7 | #navigator .navbar-toggler-icon { 8 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); 9 | } 10 | 11 | @media (max-width: 720px) { 12 | #navigator { 13 | border-bottom: 1px solid #ccc; 14 | } 15 | } 16 | 17 | #navigator a { 18 | font-size: 14px; 19 | } 20 | 21 | #navigator + section { 22 | padding: 250px 0; 23 | } -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-root', 5 | templateUrl: './app.component.html', 6 | styleUrls: ['./app.component.css'] 7 | }) 8 | 9 | export class AppComponent { 10 | title = 'angular-froala-design-blocks'; 11 | } 12 | -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-01.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/call-to-action/call-to-action-01.component.css -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-01.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |

6 | "Separated they live in Bookmarksgrove right at the coast of the Semantics, far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast." 7 |

8 | 9 |

10 | Download 11 |

12 |
13 |
14 |
15 |
16 | -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-01.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'call-to-action-01', 5 | templateUrl: './call-to-action-01.component.html', 6 | styleUrls: ['./call-to-action-01.component.css'] 7 | }) 8 | export class CallToAction01Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-02.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/call-to-action/call-to-action-02.component.css -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-02.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |

Call to Action

6 |

7 | Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts 8 |

9 |

10 | Download 11 |

12 |
13 |
14 |
15 |
16 | -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-02.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'call-to-action-02', 5 | templateUrl: './call-to-action-02.component.html', 6 | styleUrls: ['./call-to-action-02.component.css'] 7 | }) 8 | export class CallToAction02Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-03.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/call-to-action/call-to-action-03.component.css -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-03.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |

6 | Right at the coast of the Semantics, a large language ocean. 7 |

8 |

9 | Download 10 |

11 |
12 |
13 |
14 |
15 | -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-03.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'call-to-action-03', 5 | templateUrl: './call-to-action-03.component.html', 6 | styleUrls: ['./call-to-action-03.component.css'] 7 | }) 8 | export class CallToAction03Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-04.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/call-to-action/call-to-action-04.component.css -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-04.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'call-to-action-04', 5 | templateUrl: './call-to-action-04.component.html', 6 | styleUrls: ['./call-to-action-04.component.css'] 7 | }) 8 | export class CallToAction04Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-05.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/call-to-action/call-to-action-05.component.css -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-05.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |

Far far away, behind the word mountains, far from

6 |

7 | Download 8 |

9 |
10 |
11 |
12 |
13 | -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-05.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'call-to-action-05', 5 | templateUrl: './call-to-action-05.component.html', 6 | styleUrls: ['./call-to-action-05.component.css'] 7 | }) 8 | export class CallToAction05Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-06.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/call-to-action/call-to-action-06.component.css -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-06.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'call-to-action-06', 5 | templateUrl: './call-to-action-06.component.html', 6 | styleUrls: ['./call-to-action-06.component.css'] 7 | }) 8 | export class CallToAction06Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-07.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/call-to-action/call-to-action-07.component.css -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-07.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'call-to-action-07', 5 | templateUrl: './call-to-action-07.component.html', 6 | styleUrls: ['./call-to-action-07.component.css'] 7 | }) 8 | export class CallToAction07Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-08.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/call-to-action/call-to-action-08.component.css -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-08.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
6 |

Call to Action

7 |

8 | Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts 9 |

10 |

11 | Download 12 |

13 |
14 |
15 |
16 |
17 |
18 | -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-08.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'call-to-action-08', 5 | templateUrl: './call-to-action-08.component.html', 6 | styleUrls: ['./call-to-action-08.component.css'] 7 | }) 8 | export class CallToAction08Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-09.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/call-to-action/call-to-action-09.component.css -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-09.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |

Use Froala Design Blocks for free in your project

6 |
7 |
8 | Download 9 |
10 |
11 |
12 |
13 | -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-09.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'call-to-action-09', 5 | templateUrl: './call-to-action-09.component.html', 6 | styleUrls: ['./call-to-action-09.component.css'] 7 | }) 8 | export class CallToAction09Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-10.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/call-to-action/call-to-action-10.component.css -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-10.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'call-to-action-10', 5 | templateUrl: './call-to-action-10.component.html', 6 | styleUrls: ['./call-to-action-10.component.css'] 7 | }) 8 | export class CallToAction10Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-11.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/call-to-action/call-to-action-11.component.css -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-11.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 | Download 6 |
7 | 8 |
9 |

Use Froala Design Blocks for free in your project

10 |
11 |
12 |
13 |
14 | -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-11.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'call-to-action-11', 5 | templateUrl: './call-to-action-11.component.html', 6 | styleUrls: ['./call-to-action-11.component.css'] 7 | }) 8 | export class CallToAction11Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-12.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/call-to-action/call-to-action-12.component.css -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-12.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'call-to-action-12', 5 | templateUrl: './call-to-action-12.component.html', 6 | styleUrls: ['./call-to-action-12.component.css'] 7 | }) 8 | export class CallToAction12Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-13.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/call-to-action/call-to-action-13.component.css -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-13.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 | image 6 |

Froala Design Blocks

7 |

Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.

8 |

Call to Action

9 |
10 |
11 |
12 |
13 | -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-13.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'call-to-action-13', 5 | templateUrl: './call-to-action-13.component.html', 6 | styleUrls: ['./call-to-action-13.component.css'] 7 | }) 8 | export class CallToAction13Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-14.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/call-to-action/call-to-action-14.component.css -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-14.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |

Call to Action

6 |

7 | A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. 8 |

9 |

10 | Download 11 |

12 |
13 |
14 |
15 |
16 | -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-14.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'call-to-action-14', 5 | templateUrl: './call-to-action-14.component.html', 6 | styleUrls: ['./call-to-action-14.component.css'] 7 | }) 8 | export class CallToAction14Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-15.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/call-to-action/call-to-action-15.component.css -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-15.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'call-to-action-15', 5 | templateUrl: './call-to-action-15.component.html', 6 | styleUrls: ['./call-to-action-15.component.css'] 7 | }) 8 | export class CallToAction15Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-16.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/call-to-action/call-to-action-16.component.css -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-16.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |

Froala Design Blocks is Open Source and free to use in your apps

6 |

Call to Action

7 |
8 |
9 |
10 |
11 | -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-16.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'call-to-action-16', 5 | templateUrl: './call-to-action-16.component.html', 6 | styleUrls: ['./call-to-action-16.component.css'] 7 | }) 8 | export class CallToAction16Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-17.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/call-to-action/call-to-action-17.component.css -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-17.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'call-to-action-17', 5 | templateUrl: './call-to-action-17.component.html', 6 | styleUrls: ['./call-to-action-17.component.css'] 7 | }) 8 | export class CallToAction17Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-18.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/call-to-action/call-to-action-18.component.css -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-18.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'call-to-action-18', 5 | templateUrl: './call-to-action-18.component.html', 6 | styleUrls: ['./call-to-action-18.component.css'] 7 | }) 8 | export class CallToAction18Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-19.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/call-to-action/call-to-action-19.component.css -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-19.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'call-to-action-19', 5 | templateUrl: './call-to-action-19.component.html', 6 | styleUrls: ['./call-to-action-19.component.css'] 7 | }) 8 | export class CallToAction19Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-20.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/call-to-action/call-to-action-20.component.css -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-20.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'call-to-action-20', 5 | templateUrl: './call-to-action-20.component.html', 6 | styleUrls: ['./call-to-action-20.component.css'] 7 | }) 8 | export class CallToAction20Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-21.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/call-to-action/call-to-action-21.component.css -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-21.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'call-to-action-21', 5 | templateUrl: './call-to-action-21.component.html', 6 | styleUrls: ['./call-to-action-21.component.css'] 7 | }) 8 | export class CallToAction21Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-22.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/call-to-action/call-to-action-22.component.css -------------------------------------------------------------------------------- /src/app/call-to-action/call-to-action-22.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'call-to-action-22', 5 | templateUrl: './call-to-action-22.component.html', 6 | styleUrls: ['./call-to-action-22.component.css'] 7 | }) 8 | export class CallToAction22Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contacts/contacts-01.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contacts/contacts-01.component.css -------------------------------------------------------------------------------- /src/app/contacts/contacts-01.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contacts-01', 5 | templateUrl: './contacts-01.component.html', 6 | styleUrls: ['./contacts-01.component.css'] 7 | }) 8 | export class Contacts01Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contacts/contacts-02.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contacts/contacts-02.component.css -------------------------------------------------------------------------------- /src/app/contacts/contacts-02.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contacts-02', 5 | templateUrl: './contacts-02.component.html', 6 | styleUrls: ['./contacts-02.component.css'] 7 | }) 8 | export class Contacts02Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contacts/contacts-03.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contacts/contacts-03.component.css -------------------------------------------------------------------------------- /src/app/contacts/contacts-03.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contacts-03', 5 | templateUrl: './contacts-03.component.html', 6 | styleUrls: ['./contacts-03.component.css'] 7 | }) 8 | export class Contacts03Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contacts/contacts-04.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contacts/contacts-04.component.css -------------------------------------------------------------------------------- /src/app/contacts/contacts-04.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contacts-04', 5 | templateUrl: './contacts-04.component.html', 6 | styleUrls: ['./contacts-04.component.css'] 7 | }) 8 | export class Contacts04Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contacts/contacts-05.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contacts/contacts-05.component.css -------------------------------------------------------------------------------- /src/app/contacts/contacts-05.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contacts-05', 5 | templateUrl: './contacts-05.component.html', 6 | styleUrls: ['./contacts-05.component.css'] 7 | }) 8 | export class Contacts05Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contacts/contacts-06.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contacts/contacts-06.component.css -------------------------------------------------------------------------------- /src/app/contacts/contacts-06.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contacts-06', 5 | templateUrl: './contacts-06.component.html', 6 | styleUrls: ['./contacts-06.component.css'] 7 | }) 8 | export class Contacts06Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contacts/contacts-07.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contacts/contacts-07.component.css -------------------------------------------------------------------------------- /src/app/contacts/contacts-07.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contacts-07', 5 | templateUrl: './contacts-07.component.html', 6 | styleUrls: ['./contacts-07.component.css'] 7 | }) 8 | export class Contacts07Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contacts/contacts-08.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contacts/contacts-08.component.css -------------------------------------------------------------------------------- /src/app/contacts/contacts-08.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contacts-08', 5 | templateUrl: './contacts-08.component.html', 6 | styleUrls: ['./contacts-08.component.css'] 7 | }) 8 | export class Contacts08Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contacts/contacts-09.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contacts/contacts-09.component.css -------------------------------------------------------------------------------- /src/app/contacts/contacts-09.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contacts-09', 5 | templateUrl: './contacts-09.component.html', 6 | styleUrls: ['./contacts-09.component.css'] 7 | }) 8 | export class Contacts09Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contacts/contacts-10.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contacts/contacts-10.component.css -------------------------------------------------------------------------------- /src/app/contacts/contacts-10.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contacts-10', 5 | templateUrl: './contacts-10.component.html', 6 | styleUrls: ['./contacts-10.component.css'] 7 | }) 8 | export class Contacts10Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-01.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-01.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-01.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |

Froala Design Blocks

6 |
7 |
8 |
9 |
10 | -------------------------------------------------------------------------------- /src/app/contents/contents-01.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-01', 5 | templateUrl: './contents-01.component.html', 6 | styleUrls: ['./contents-01.component.css'] 7 | }) 8 | export class Contents01Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-02.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-02.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-02.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |

Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language 6 | ocean.

7 |
8 |
9 |
10 |
11 | -------------------------------------------------------------------------------- /src/app/contents/contents-02.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-02', 5 | templateUrl: './contents-02.component.html', 6 | styleUrls: ['./contents-02.component.css'] 7 | }) 8 | export class Contents02Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-03.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-03.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-03.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |

Froala Design Blocks

6 |

Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.

7 |
8 |
9 |
10 |
11 | -------------------------------------------------------------------------------- /src/app/contents/contents-03.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-03', 5 | templateUrl: './contents-03.component.html', 6 | styleUrls: ['./contents-03.component.css'] 7 | }) 8 | export class Contents03Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-04.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-04.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-04.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |

Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.

6 |
7 |
8 |
9 |
10 | -------------------------------------------------------------------------------- /src/app/contents/contents-04.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-04', 5 | templateUrl: './contents-04.component.html', 6 | styleUrls: ['./contents-04.component.css'] 7 | }) 8 | export class Contents04Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-05.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-05.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-05.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |

Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.

6 |
7 |
8 |
9 |
10 | -------------------------------------------------------------------------------- /src/app/contents/contents-05.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-05', 5 | templateUrl: './contents-05.component.html', 6 | styleUrls: ['./contents-05.component.css'] 7 | }) 8 | export class Contents05Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-06.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-06.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-06.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-06', 5 | templateUrl: './contents-06.component.html', 6 | styleUrls: ['./contents-06.component.css'] 7 | }) 8 | export class Contents06Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-07.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-07.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-07.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-07', 5 | templateUrl: './contents-07.component.html', 6 | styleUrls: ['./contents-07.component.css'] 7 | }) 8 | export class Contents07Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-08.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-08.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-08.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-08', 5 | templateUrl: './contents-08.component.html', 6 | styleUrls: ['./contents-08.component.css'] 7 | }) 8 | export class Contents08Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-09.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-09.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-09.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |

Froala Design Blocks

6 |
7 |
8 | 9 |
10 |
11 | image 12 |
13 |
14 | image 15 |
16 |
17 |
18 |
19 | -------------------------------------------------------------------------------- /src/app/contents/contents-09.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-09', 5 | templateUrl: './contents-09.component.html', 6 | styleUrls: ['./contents-09.component.css'] 7 | }) 8 | export class Contents09Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-10.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-10.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-10.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-10', 5 | templateUrl: './contents-10.component.html', 6 | styleUrls: ['./contents-10.component.css'] 7 | }) 8 | export class Contents10Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-11.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-11.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-11.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-11', 5 | templateUrl: './contents-11.component.html', 6 | styleUrls: ['./contents-11.component.css'] 7 | }) 8 | export class Contents11Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-12.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-12.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-12.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |

Design Blocks

6 |

Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.

7 |
8 |
9 | image 10 |
11 |
12 |
13 |
14 | -------------------------------------------------------------------------------- /src/app/contents/contents-12.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-12', 5 | templateUrl: './contents-12.component.html', 6 | styleUrls: ['./contents-12.component.css'] 7 | }) 8 | export class Contents12Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-13.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-13.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-13.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 | image 6 |

Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.

7 |
8 |
9 |
10 |
11 | -------------------------------------------------------------------------------- /src/app/contents/contents-13.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-13', 5 | templateUrl: './contents-13.component.html', 6 | styleUrls: ['./contents-13.component.css'] 7 | }) 8 | export class Contents13Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-14.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-14.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-14.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 | image 6 |
7 |
8 |

Froala Blocks

9 |

A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.

10 |

Download

11 |
12 |
13 |
14 |
15 | -------------------------------------------------------------------------------- /src/app/contents/contents-14.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-14', 5 | templateUrl: './contents-14.component.html', 6 | styleUrls: ['./contents-14.component.css'] 7 | }) 8 | export class Contents14Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-15.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-15.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-15.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 | image 6 |

Design Blocks

7 |

Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.

8 |
9 |
10 | image 11 |
12 |
13 |
14 |
15 | -------------------------------------------------------------------------------- /src/app/contents/contents-15.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-15', 5 | templateUrl: './contents-15.component.html', 6 | styleUrls: ['./contents-15.component.css'] 7 | }) 8 | export class Contents15Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-16.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-16.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-16.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-16', 5 | templateUrl: './contents-16.component.html', 6 | styleUrls: ['./contents-16.component.css'] 7 | }) 8 | export class Contents16Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-17.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-17.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-17.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 | image 6 |
7 | 8 |
9 |

Design Blocks

10 |

Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.

11 |

Download

12 |
13 |
14 |
15 |
16 | -------------------------------------------------------------------------------- /src/app/contents/contents-17.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-17', 5 | templateUrl: './contents-17.component.html', 6 | styleUrls: ['./contents-17.component.css'] 7 | }) 8 | export class Contents17Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-18.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-18.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-18.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-18', 5 | templateUrl: './contents-18.component.html', 6 | styleUrls: ['./contents-18.component.css'] 7 | }) 8 | export class Contents18Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-19.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-19.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-19.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-19', 5 | templateUrl: './contents-19.component.html', 6 | styleUrls: ['./contents-19.component.css'] 7 | }) 8 | export class Contents19Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-20.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-20.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-20.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-20', 5 | templateUrl: './contents-20.component.html', 6 | styleUrls: ['./contents-20.component.css'] 7 | }) 8 | export class Contents20Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-21.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-21.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-21.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-21', 5 | templateUrl: './contents-21.component.html', 6 | styleUrls: ['./contents-21.component.css'] 7 | }) 8 | export class Contents21Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-22.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-22.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-22.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 | image 6 |

Froala Design Blocks

7 |

Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies

8 | 9 |

Download Now

10 |

Latest Version: 2.3.5

11 |
12 |
13 |
14 |
15 | -------------------------------------------------------------------------------- /src/app/contents/contents-22.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-22', 5 | templateUrl: './contents-22.component.html', 6 | styleUrls: ['./contents-22.component.css'] 7 | }) 8 | export class Contents22Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-23.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-23.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-23.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-23', 5 | templateUrl: './contents-23.component.html', 6 | styleUrls: ['./contents-23.component.css'] 7 | }) 8 | export class Contents23Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-24.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-24.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-24.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-24', 5 | templateUrl: './contents-24.component.html', 6 | styleUrls: ['./contents-24.component.css'] 7 | }) 8 | export class Contents24Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-25.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-25.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-25.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
6 |
7 |

Froala Design Blocks is Open Source and free to use

8 |
9 |
10 |
11 |
12 |
13 |
14 | image 15 |
16 |
17 |
18 |
19 | -------------------------------------------------------------------------------- /src/app/contents/contents-25.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-25', 5 | templateUrl: './contents-25.component.html', 6 | styleUrls: ['./contents-25.component.css'] 7 | }) 8 | export class Contents25Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-26.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-26.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-26.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | 5 |
6 |
7 |
8 |

Froala Blocks

9 |

When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove

10 | 11 |

Learn More

12 |
13 |
14 |
15 |
16 | -------------------------------------------------------------------------------- /src/app/contents/contents-26.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-26', 5 | templateUrl: './contents-26.component.html', 6 | styleUrls: ['./contents-26.component.css'] 7 | }) 8 | export class Contents26Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-27.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-27.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-27.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-27', 5 | templateUrl: './contents-27.component.html', 6 | styleUrls: ['./contents-27.component.css'] 7 | }) 8 | export class Contents27Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-28.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-28.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-28.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |

Made with by Froala

6 |
7 |
8 |
9 |
10 | -------------------------------------------------------------------------------- /src/app/contents/contents-28.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-28', 5 | templateUrl: './contents-28.component.html', 6 | styleUrls: ['./contents-28.component.css'] 7 | }) 8 | export class Contents28Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-29.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-29.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-29.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-29', 5 | templateUrl: './contents-29.component.html', 6 | styleUrls: ['./contents-29.component.css'] 7 | }) 8 | export class Contents29Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-30.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-30.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-30.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-30', 5 | templateUrl: './contents-30.component.html', 6 | styleUrls: ['./contents-30.component.css'] 7 | }) 8 | export class Contents30Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-31.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-31.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-31.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-31', 5 | templateUrl: './contents-31.component.html', 6 | styleUrls: ['./contents-31.component.css'] 7 | }) 8 | export class Contents31Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-32.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-32.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-32.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-32', 5 | templateUrl: './contents-32.component.html', 6 | styleUrls: ['./contents-32.component.css'] 7 | }) 8 | export class Contents32Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-33.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-33.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-33.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
6 |

Design Blocks

7 |

Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics

8 |

Read More

9 |
10 |
11 |
12 |
13 |
14 | -------------------------------------------------------------------------------- /src/app/contents/contents-33.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-33', 5 | templateUrl: './contents-33.component.html', 6 | styleUrls: ['./contents-33.component.css'] 7 | }) 8 | export class Contents33Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-34.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-34.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-34.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
6 |

Design Blocks

7 |

Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.

8 | 9 |

Read More

10 |
11 |
12 |
13 |
14 |
15 | -------------------------------------------------------------------------------- /src/app/contents/contents-34.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-34', 5 | templateUrl: './contents-34.component.html', 6 | styleUrls: ['./contents-34.component.css'] 7 | }) 8 | export class Contents34Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/contents/contents-35.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/contents/contents-35.component.css -------------------------------------------------------------------------------- /src/app/contents/contents-35.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'contents-35', 5 | templateUrl: './contents-35.component.html', 6 | styleUrls: ['./contents-35.component.css'] 7 | }) 8 | export class Contents35Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/features/features-01.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/features/features-01.component.css -------------------------------------------------------------------------------- /src/app/features/features-01.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'features-01', 5 | templateUrl: './features-01.component.html', 6 | styleUrls: ['./features-01.component.css'] 7 | }) 8 | export class Features01Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/features/features-02.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/features/features-02.component.css -------------------------------------------------------------------------------- /src/app/features/features-02.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'features-02', 5 | templateUrl: './features-02.component.html', 6 | styleUrls: ['./features-02.component.css'] 7 | }) 8 | export class Features02Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/features/features-03.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/features/features-03.component.css -------------------------------------------------------------------------------- /src/app/features/features-03.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'features-03', 5 | templateUrl: './features-03.component.html', 6 | styleUrls: ['./features-03.component.css'] 7 | }) 8 | export class Features03Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/features/features-04.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/features/features-04.component.css -------------------------------------------------------------------------------- /src/app/features/features-04.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'features-04', 5 | templateUrl: './features-04.component.html', 6 | styleUrls: ['./features-04.component.css'] 7 | }) 8 | export class Features04Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/features/features-05.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/features/features-05.component.css -------------------------------------------------------------------------------- /src/app/features/features-05.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'features-05', 5 | templateUrl: './features-05.component.html', 6 | styleUrls: ['./features-05.component.css'] 7 | }) 8 | export class Features05Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/features/features-06.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/features/features-06.component.css -------------------------------------------------------------------------------- /src/app/features/features-06.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'features-06', 5 | templateUrl: './features-06.component.html', 6 | styleUrls: ['./features-06.component.css'] 7 | }) 8 | export class Features06Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/features/features-07.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/features/features-07.component.css -------------------------------------------------------------------------------- /src/app/features/features-07.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'features-07', 5 | templateUrl: './features-07.component.html', 6 | styleUrls: ['./features-07.component.css'] 7 | }) 8 | export class Features07Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/features/features-08.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/features/features-08.component.css -------------------------------------------------------------------------------- /src/app/features/features-08.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'features-08', 5 | templateUrl: './features-08.component.html', 6 | styleUrls: ['./features-08.component.css'] 7 | }) 8 | export class Features08Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/features/features-09.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/features/features-09.component.css -------------------------------------------------------------------------------- /src/app/features/features-09.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'features-09', 5 | templateUrl: './features-09.component.html', 6 | styleUrls: ['./features-09.component.css'] 7 | }) 8 | export class Features09Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/features/features-10.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/features/features-10.component.css -------------------------------------------------------------------------------- /src/app/features/features-10.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'features-10', 5 | templateUrl: './features-10.component.html', 6 | styleUrls: ['./features-10.component.css'] 7 | }) 8 | export class Features10Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/features/features-11.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/features/features-11.component.css -------------------------------------------------------------------------------- /src/app/features/features-11.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'features-11', 5 | templateUrl: './features-11.component.html', 6 | styleUrls: ['./features-11.component.css'] 7 | }) 8 | export class Features11Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/features/features-12.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/features/features-12.component.css -------------------------------------------------------------------------------- /src/app/features/features-12.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'features-12', 5 | templateUrl: './features-12.component.html', 6 | styleUrls: ['./features-12.component.css'] 7 | }) 8 | export class Features12Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/features/features-13.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/features/features-13.component.css -------------------------------------------------------------------------------- /src/app/features/features-13.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'features-13', 5 | templateUrl: './features-13.component.html', 6 | styleUrls: ['./features-13.component.css'] 7 | }) 8 | export class Features13Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/features/features-14.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/features/features-14.component.css -------------------------------------------------------------------------------- /src/app/features/features-14.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'features-14', 5 | templateUrl: './features-14.component.html', 6 | styleUrls: ['./features-14.component.css'] 7 | }) 8 | export class Features14Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/features/features-15.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/features/features-15.component.css -------------------------------------------------------------------------------- /src/app/features/features-15.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'features-15', 5 | templateUrl: './features-15.component.html', 6 | styleUrls: ['./features-15.component.css'] 7 | }) 8 | export class Features15Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/features/features-16.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/features/features-16.component.css -------------------------------------------------------------------------------- /src/app/features/features-16.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'features-16', 5 | templateUrl: './features-16.component.html', 6 | styleUrls: ['./features-16.component.css'] 7 | }) 8 | export class Features16Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/features/features-17.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/features/features-17.component.css -------------------------------------------------------------------------------- /src/app/features/features-17.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'features-17', 5 | templateUrl: './features-17.component.html', 6 | styleUrls: ['./features-17.component.css'] 7 | }) 8 | export class Features17Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/features/features-18.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/features/features-18.component.css -------------------------------------------------------------------------------- /src/app/features/features-18.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'features-18', 5 | templateUrl: './features-18.component.html', 6 | styleUrls: ['./features-18.component.css'] 7 | }) 8 | export class Features18Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/features/features-19.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/features/features-19.component.css -------------------------------------------------------------------------------- /src/app/features/features-19.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'features-19', 5 | templateUrl: './features-19.component.html', 6 | styleUrls: ['./features-19.component.css'] 7 | }) 8 | export class Features19Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/features/features-20.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/features/features-20.component.css -------------------------------------------------------------------------------- /src/app/features/features-20.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'features-20', 5 | templateUrl: './features-20.component.html', 6 | styleUrls: ['./features-20.component.css'] 7 | }) 8 | export class Features20Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/features/features-21.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/features/features-21.component.css -------------------------------------------------------------------------------- /src/app/features/features-21.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'features-21', 5 | templateUrl: './features-21.component.html', 6 | styleUrls: ['./features-21.component.css'] 7 | }) 8 | export class Features21Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/features/features-22.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/features/features-22.component.css -------------------------------------------------------------------------------- /src/app/features/features-22.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'features-22', 5 | templateUrl: './features-22.component.html', 6 | styleUrls: ['./features-22.component.css'] 7 | }) 8 | export class Features22Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/features/features-23.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/features/features-23.component.css -------------------------------------------------------------------------------- /src/app/features/features-23.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'features-23', 5 | templateUrl: './features-23.component.html', 6 | styleUrls: ['./features-23.component.css'] 7 | }) 8 | export class Features23Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/features/features-24.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/features/features-24.component.css -------------------------------------------------------------------------------- /src/app/features/features-24.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'features-24', 5 | templateUrl: './features-24.component.html', 6 | styleUrls: ['./features-24.component.css'] 7 | }) 8 | export class Features24Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/features/features-25.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/features/features-25.component.css -------------------------------------------------------------------------------- /src/app/features/features-25.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'features-25', 5 | templateUrl: './features-25.component.html', 6 | styleUrls: ['./features-25.component.css'] 7 | }) 8 | export class Features25Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/features/features-26.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/features/features-26.component.css -------------------------------------------------------------------------------- /src/app/features/features-26.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'features-26', 5 | templateUrl: './features-26.component.html', 6 | styleUrls: ['./features-26.component.css'] 7 | }) 8 | export class Features26Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/features/features-27.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/features/features-27.component.css -------------------------------------------------------------------------------- /src/app/features/features-27.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'features-27', 5 | templateUrl: './features-27.component.html', 6 | styleUrls: ['./features-27.component.css'] 7 | }) 8 | export class Features27Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/features/features-28.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/features/features-28.component.css -------------------------------------------------------------------------------- /src/app/features/features-28.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'features-28', 5 | templateUrl: './features-28.component.html', 6 | styleUrls: ['./features-28.component.css'] 7 | }) 8 | export class Features28Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/features/features-29.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/features/features-29.component.css -------------------------------------------------------------------------------- /src/app/features/features-29.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'features-29', 5 | templateUrl: './features-29.component.html', 6 | styleUrls: ['./features-29.component.css'] 7 | }) 8 | export class Features29Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/features/features-30.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/features/features-30.component.css -------------------------------------------------------------------------------- /src/app/features/features-30.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'features-30', 5 | templateUrl: './features-30.component.html', 6 | styleUrls: ['./features-30.component.css'] 7 | }) 8 | export class Features30Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/features/features-31.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/features/features-31.component.css -------------------------------------------------------------------------------- /src/app/features/features-31.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'features-31', 5 | templateUrl: './features-31.component.html', 6 | styleUrls: ['./features-31.component.css'] 7 | }) 8 | export class Features31Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/features/features-32.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/features/features-32.component.css -------------------------------------------------------------------------------- /src/app/features/features-32.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'features-32', 5 | templateUrl: './features-32.component.html', 6 | styleUrls: ['./features-32.component.css'] 7 | }) 8 | export class Features32Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/features/features-33.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/features/features-33.component.css -------------------------------------------------------------------------------- /src/app/features/features-33.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'features-33', 5 | templateUrl: './features-33.component.html', 6 | styleUrls: ['./features-33.component.css'] 7 | }) 8 | export class Features33Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/footers/footers-01.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/footers/footers-01.component.css -------------------------------------------------------------------------------- /src/app/footers/footers-01.component.html: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /src/app/footers/footers-01.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'footers-01', 5 | templateUrl: './footers-01.component.html', 6 | styleUrls: ['./footers-01.component.css'] 7 | }) 8 | export class Footers01Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/footers/footers-01.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Footers01Component } from './footers-01.component'; 4 | 5 | describe('Footers01Component', () => { 6 | let component: Footers01Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Footers01Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Footers01Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/footers/footers-02.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/footers/footers-02.component.css -------------------------------------------------------------------------------- /src/app/footers/footers-02.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'footers-02', 5 | templateUrl: './footers-02.component.html', 6 | styleUrls: ['./footers-02.component.css'] 7 | }) 8 | export class Footers02Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/footers/footers-02.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Footers02Component } from './footers-02.component'; 4 | 5 | describe('Footers02Component', () => { 6 | let component: Footers02Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Footers02Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Footers02Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/footers/footers-03.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/footers/footers-03.component.css -------------------------------------------------------------------------------- /src/app/footers/footers-03.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'footers-03', 5 | templateUrl: './footers-03.component.html', 6 | styleUrls: ['./footers-03.component.css'] 7 | }) 8 | export class Footers03Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/footers/footers-03.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Footers03Component } from './footers-03.component'; 4 | 5 | describe('Footers03Component', () => { 6 | let component: Footers03Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Footers03Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Footers03Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/footers/footers-04.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/footers/footers-04.component.css -------------------------------------------------------------------------------- /src/app/footers/footers-04.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'footers-04', 5 | templateUrl: './footers-04.component.html', 6 | styleUrls: ['./footers-04.component.css'] 7 | }) 8 | export class Footers04Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/footers/footers-04.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Footers04Component } from './footers-04.component'; 4 | 5 | describe('Footers04Component', () => { 6 | let component: Footers04Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Footers04Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Footers04Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/footers/footers-05.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/footers/footers-05.component.css -------------------------------------------------------------------------------- /src/app/footers/footers-05.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'footers-05', 5 | templateUrl: './footers-05.component.html', 6 | styleUrls: ['./footers-05.component.css'] 7 | }) 8 | export class Footers05Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/footers/footers-05.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Footers05Component } from './footers-05.component'; 4 | 5 | describe('Footers05Component', () => { 6 | let component: Footers05Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Footers05Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Footers05Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/footers/footers-06.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/footers/footers-06.component.css -------------------------------------------------------------------------------- /src/app/footers/footers-06.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'footers-06', 5 | templateUrl: './footers-06.component.html', 6 | styleUrls: ['./footers-06.component.css'] 7 | }) 8 | export class Footers06Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/footers/footers-06.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Footers06Component } from './footers-06.component'; 4 | 5 | describe('Footers06Component', () => { 6 | let component: Footers06Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Footers06Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Footers06Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/footers/footers-07.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/footers/footers-07.component.css -------------------------------------------------------------------------------- /src/app/footers/footers-07.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'footers-07', 5 | templateUrl: './footers-07.component.html', 6 | styleUrls: ['./footers-07.component.css'] 7 | }) 8 | export class Footers07Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/footers/footers-07.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Footers07Component } from './footers-07.component'; 4 | 5 | describe('Footers07Component', () => { 6 | let component: Footers07Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Footers07Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Footers07Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/footers/footers-08.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/footers/footers-08.component.css -------------------------------------------------------------------------------- /src/app/footers/footers-08.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'footers-08', 5 | templateUrl: './footers-08.component.html', 6 | styleUrls: ['./footers-08.component.css'] 7 | }) 8 | export class Footers08Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/footers/footers-08.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Footers08Component } from './footers-08.component'; 4 | 5 | describe('Footers08Component', () => { 6 | let component: Footers08Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Footers08Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Footers08Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/footers/footers-09.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/footers/footers-09.component.css -------------------------------------------------------------------------------- /src/app/footers/footers-09.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'footers-09', 5 | templateUrl: './footers-09.component.html', 6 | styleUrls: ['./footers-09.component.css'] 7 | }) 8 | export class Footers09Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/footers/footers-09.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Footers09Component } from './footers-09.component'; 4 | 5 | describe('Footers09Component', () => { 6 | let component: Footers09Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Footers09Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Footers09Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/footers/footers-10.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/footers/footers-10.component.css -------------------------------------------------------------------------------- /src/app/footers/footers-10.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'footers-10', 5 | templateUrl: './footers-10.component.html', 6 | styleUrls: ['./footers-10.component.css'] 7 | }) 8 | export class Footers10Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/footers/footers-10.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Footers10Component } from './footers-10.component'; 4 | 5 | describe('Footers10Component', () => { 6 | let component: Footers10Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Footers10Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Footers10Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/footers/footers-11.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/footers/footers-11.component.css -------------------------------------------------------------------------------- /src/app/footers/footers-11.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'footers-11', 5 | templateUrl: './footers-11.component.html', 6 | styleUrls: ['./footers-11.component.css'] 7 | }) 8 | export class Footers11Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/footers/footers-11.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Footers11Component } from './footers-11.component'; 4 | 5 | describe('Footers11Component', () => { 6 | let component: Footers11Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Footers11Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Footers11Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/footers/footers-12.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/footers/footers-12.component.css -------------------------------------------------------------------------------- /src/app/footers/footers-12.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'footers-12', 5 | templateUrl: './footers-12.component.html', 6 | styleUrls: ['./footers-12.component.css'] 7 | }) 8 | export class Footers12Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/footers/footers-12.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Footers12Component } from './footers-12.component'; 4 | 5 | describe('Footers12Component', () => { 6 | let component: Footers12Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Footers12Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Footers12Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/forms/forms-01.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/forms/forms-01.component.css -------------------------------------------------------------------------------- /src/app/forms/forms-01.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |

Subscribe

6 |
7 | 8 |
9 | 10 |
11 |
12 | 13 |

Find us on Facebook and Twitter.

14 |
15 |
16 |
17 |
18 | -------------------------------------------------------------------------------- /src/app/forms/forms-01.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'forms-01', 5 | templateUrl: './forms-01.component.html', 6 | styleUrls: ['./forms-01.component.css'] 7 | }) 8 | export class Forms01Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/forms/forms-01.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Forms01Component } from './forms-01.component'; 4 | 5 | describe('Forms01Component', () => { 6 | let component: Forms01Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Forms01Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Forms01Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/forms/forms-02.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/forms/forms-02.component.css -------------------------------------------------------------------------------- /src/app/forms/forms-02.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'forms-02', 5 | templateUrl: './forms-02.component.html', 6 | styleUrls: ['./forms-02.component.css'] 7 | }) 8 | export class Forms02Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/forms/forms-02.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Forms02Component } from './forms-02.component'; 4 | 5 | describe('Forms02Component', () => { 6 | let component: Forms02Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Forms02Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Forms02Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/forms/forms-03.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/forms/forms-03.component.css -------------------------------------------------------------------------------- /src/app/forms/forms-03.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'forms-03', 5 | templateUrl: './forms-03.component.html', 6 | styleUrls: ['./forms-03.component.css'] 7 | }) 8 | export class Forms03Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/forms/forms-03.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Forms03Component } from './forms-03.component'; 4 | 5 | describe('Forms03Component', () => { 6 | let component: Forms03Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Forms03Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Forms03Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/forms/forms-04.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/forms/forms-04.component.css -------------------------------------------------------------------------------- /src/app/forms/forms-04.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'forms-04', 5 | templateUrl: './forms-04.component.html', 6 | styleUrls: ['./forms-04.component.css'] 7 | }) 8 | export class Forms04Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/forms/forms-04.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Forms04Component } from './forms-04.component'; 4 | 5 | describe('Forms04Component', () => { 6 | let component: Forms04Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Forms04Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Forms04Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/forms/forms-05.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/forms/forms-05.component.css -------------------------------------------------------------------------------- /src/app/forms/forms-05.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'forms-05', 5 | templateUrl: './forms-05.component.html', 6 | styleUrls: ['./forms-05.component.css'] 7 | }) 8 | export class Forms05Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/forms/forms-05.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Forms05Component } from './forms-05.component'; 4 | 5 | describe('Forms05Component', () => { 6 | let component: Forms05Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Forms05Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Forms05Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/forms/forms-06.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/forms/forms-06.component.css -------------------------------------------------------------------------------- /src/app/forms/forms-06.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'forms-06', 5 | templateUrl: './forms-06.component.html', 6 | styleUrls: ['./forms-06.component.css'] 7 | }) 8 | export class Forms06Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/forms/forms-06.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Forms06Component } from './forms-06.component'; 4 | 5 | describe('Forms06Component', () => { 6 | let component: Forms06Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Forms06Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Forms06Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/forms/forms-07.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/forms/forms-07.component.css -------------------------------------------------------------------------------- /src/app/forms/forms-07.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'forms-07', 5 | templateUrl: './forms-07.component.html', 6 | styleUrls: ['./forms-07.component.css'] 7 | }) 8 | export class Forms07Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/forms/forms-07.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Forms07Component } from './forms-07.component'; 4 | 5 | describe('Forms07Component', () => { 6 | let component: Forms07Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Forms07Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Forms07Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/forms/forms-08.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/forms/forms-08.component.css -------------------------------------------------------------------------------- /src/app/forms/forms-08.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'forms-08', 5 | templateUrl: './forms-08.component.html', 6 | styleUrls: ['./forms-08.component.css'] 7 | }) 8 | export class Forms08Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/forms/forms-08.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Forms08Component } from './forms-08.component'; 4 | 5 | describe('Forms08Component', () => { 6 | let component: Forms08Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Forms08Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Forms08Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/forms/forms-09.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/forms/forms-09.component.css -------------------------------------------------------------------------------- /src/app/forms/forms-09.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'forms-09', 5 | templateUrl: './forms-09.component.html', 6 | styleUrls: ['./forms-09.component.css'] 7 | }) 8 | export class Forms09Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/forms/forms-09.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Forms09Component } from './forms-09.component'; 4 | 5 | describe('Forms09Component', () => { 6 | let component: Forms09Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Forms09Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Forms09Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/forms/forms-10.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/forms/forms-10.component.css -------------------------------------------------------------------------------- /src/app/forms/forms-10.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'forms-10', 5 | templateUrl: './forms-10.component.html', 6 | styleUrls: ['./forms-10.component.css'] 7 | }) 8 | export class Forms10Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/forms/forms-10.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Forms10Component } from './forms-10.component'; 4 | 5 | describe('Forms10Component', () => { 6 | let component: Forms10Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Forms10Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Forms10Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/forms/forms-11.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/forms/forms-11.component.css -------------------------------------------------------------------------------- /src/app/forms/forms-11.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'forms-11', 5 | templateUrl: './forms-11.component.html', 6 | styleUrls: ['./forms-11.component.css'] 7 | }) 8 | export class Forms11Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/forms/forms-11.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Forms11Component } from './forms-11.component'; 4 | 5 | describe('Forms11Component', () => { 6 | let component: Forms11Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Forms11Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Forms11Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/forms/forms-12.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/forms/forms-12.component.css -------------------------------------------------------------------------------- /src/app/forms/forms-12.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'forms-12', 5 | templateUrl: './forms-12.component.html', 6 | styleUrls: ['./forms-12.component.css'] 7 | }) 8 | export class Forms12Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/forms/forms-12.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Forms12Component } from './forms-12.component'; 4 | 5 | describe('Forms12Component', () => { 6 | let component: Forms12Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Forms12Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Forms12Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/headers/headers-01.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/headers/headers-01.component.css -------------------------------------------------------------------------------- /src/app/headers/headers-01.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 8 |
9 |
10 | -------------------------------------------------------------------------------- /src/app/headers/headers-01.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'headers-01', 5 | templateUrl: './headers-01.component.html', 6 | styleUrls: ['./headers-01.component.css'] 7 | }) 8 | export class Headers01Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/headers/headers-01.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Headers01Component } from './headers-01.component'; 4 | 5 | describe('Headers01Component', () => { 6 | let component: Headers01Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Headers01Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Headers01Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/headers/headers-02.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/headers/headers-02.component.css -------------------------------------------------------------------------------- /src/app/headers/headers-02.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 8 |
9 |
10 | -------------------------------------------------------------------------------- /src/app/headers/headers-02.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'headers-02', 5 | templateUrl: './headers-02.component.html', 6 | styleUrls: ['./headers-02.component.css'] 7 | }) 8 | export class Headers02Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/headers/headers-02.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Headers02Component } from './headers-02.component'; 4 | 5 | describe('Headers02Component', () => { 6 | let component: Headers02Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Headers02Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Headers02Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/headers/headers-03.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/headers/headers-03.component.css -------------------------------------------------------------------------------- /src/app/headers/headers-03.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'headers-03', 5 | templateUrl: './headers-03.component.html', 6 | styleUrls: ['./headers-03.component.css'] 7 | }) 8 | export class Headers03Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/headers/headers-03.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Headers03Component } from './headers-03.component'; 4 | 5 | describe('Headers03Component', () => { 6 | let component: Headers03Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Headers03Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Headers03Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/headers/headers-04.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/headers/headers-04.component.css -------------------------------------------------------------------------------- /src/app/headers/headers-04.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'headers-04', 5 | templateUrl: './headers-04.component.html', 6 | styleUrls: ['./headers-04.component.css'] 7 | }) 8 | export class Headers04Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/headers/headers-04.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Headers04Component } from './headers-04.component'; 4 | 5 | describe('Headers04Component', () => { 6 | let component: Headers04Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Headers04Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Headers04Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/headers/headers-05.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/headers/headers-05.component.css -------------------------------------------------------------------------------- /src/app/headers/headers-05.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'headers-05', 5 | templateUrl: './headers-05.component.html', 6 | styleUrls: ['./headers-05.component.css'] 7 | }) 8 | export class Headers05Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/headers/headers-05.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Headers05Component } from './headers-05.component'; 4 | 5 | describe('Headers05Component', () => { 6 | let component: Headers05Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Headers05Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Headers05Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/headers/headers-06.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/headers/headers-06.component.css -------------------------------------------------------------------------------- /src/app/headers/headers-06.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'headers-06', 5 | templateUrl: './headers-06.component.html', 6 | styleUrls: ['./headers-06.component.css'] 7 | }) 8 | export class Headers06Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/headers/headers-06.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Headers06Component } from './headers-06.component'; 4 | 5 | describe('Headers06Component', () => { 6 | let component: Headers06Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Headers06Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Headers06Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/headers/headers-07.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/headers/headers-07.component.css -------------------------------------------------------------------------------- /src/app/headers/headers-07.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'headers-07', 5 | templateUrl: './headers-07.component.html', 6 | styleUrls: ['./headers-07.component.css'] 7 | }) 8 | export class Headers07Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/headers/headers-07.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Headers07Component } from './headers-07.component'; 4 | 5 | describe('Headers07Component', () => { 6 | let component: Headers07Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Headers07Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Headers07Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/headers/headers-08.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/headers/headers-08.component.css -------------------------------------------------------------------------------- /src/app/headers/headers-08.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'headers-08', 5 | templateUrl: './headers-08.component.html', 6 | styleUrls: ['./headers-08.component.css'] 7 | }) 8 | export class Headers08Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/headers/headers-08.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Headers08Component } from './headers-08.component'; 4 | 5 | describe('Headers08Component', () => { 6 | let component: Headers08Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Headers08Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Headers08Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/headers/headers-09.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/headers/headers-09.component.css -------------------------------------------------------------------------------- /src/app/headers/headers-09.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'headers-09', 5 | templateUrl: './headers-09.component.html', 6 | styleUrls: ['./headers-09.component.css'] 7 | }) 8 | export class Headers09Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/headers/headers-09.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Headers09Component } from './headers-09.component'; 4 | 5 | describe('Headers09Component', () => { 6 | let component: Headers09Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Headers09Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Headers09Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/headers/headers-10.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/headers/headers-10.component.css -------------------------------------------------------------------------------- /src/app/headers/headers-10.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'headers-10', 5 | templateUrl: './headers-10.component.html', 6 | styleUrls: ['./headers-10.component.css'] 7 | }) 8 | export class Headers10Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/headers/headers-10.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Headers10Component } from './headers-10.component'; 4 | 5 | describe('Headers10Component', () => { 6 | let component: Headers10Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Headers10Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Headers10Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/headers/headers-11.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/headers/headers-11.component.css -------------------------------------------------------------------------------- /src/app/headers/headers-11.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 8 |
9 |
10 | -------------------------------------------------------------------------------- /src/app/headers/headers-11.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'headers-11', 5 | templateUrl: './headers-11.component.html', 6 | styleUrls: ['./headers-11.component.css'] 7 | }) 8 | export class Headers11Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/headers/headers-11.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Headers11Component } from './headers-11.component'; 4 | 5 | describe('Headers11Component', () => { 6 | let component: Headers11Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Headers11Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Headers11Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/headers/headers-12.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/headers/headers-12.component.css -------------------------------------------------------------------------------- /src/app/headers/headers-12.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 8 |
9 |
10 | -------------------------------------------------------------------------------- /src/app/headers/headers-12.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'headers-12', 5 | templateUrl: './headers-12.component.html', 6 | styleUrls: ['./headers-12.component.css'] 7 | }) 8 | export class Headers12Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/headers/headers-12.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Headers12Component } from './headers-12.component'; 4 | 5 | describe('Headers12Component', () => { 6 | let component: Headers12Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Headers12Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Headers12Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/headers/headers-13.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/headers/headers-13.component.css -------------------------------------------------------------------------------- /src/app/headers/headers-13.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'headers-13', 5 | templateUrl: './headers-13.component.html', 6 | styleUrls: ['./headers-13.component.css'] 7 | }) 8 | export class Headers13Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/headers/headers-13.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Headers13Component } from './headers-13.component'; 4 | 5 | describe('Headers13Component', () => { 6 | let component: Headers13Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Headers13Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Headers13Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/headers/headers-14.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/headers/headers-14.component.css -------------------------------------------------------------------------------- /src/app/headers/headers-14.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'headers-14', 5 | templateUrl: './headers-14.component.html', 6 | styleUrls: ['./headers-14.component.css'] 7 | }) 8 | export class Headers14Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/headers/headers-14.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Headers14Component } from './headers-14.component'; 4 | 5 | describe('Headers14Component', () => { 6 | let component: Headers14Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Headers14Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Headers14Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/headers/headers-15.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/headers/headers-15.component.css -------------------------------------------------------------------------------- /src/app/headers/headers-15.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'headers-15', 5 | templateUrl: './headers-15.component.html', 6 | styleUrls: ['./headers-15.component.css'] 7 | }) 8 | export class Headers15Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/headers/headers-15.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Headers15Component } from './headers-15.component'; 4 | 5 | describe('Headers15Component', () => { 6 | let component: Headers15Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Headers15Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Headers15Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/headers/headers-16.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/headers/headers-16.component.css -------------------------------------------------------------------------------- /src/app/headers/headers-16.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'headers-16', 5 | templateUrl: './headers-16.component.html', 6 | styleUrls: ['./headers-16.component.css'] 7 | }) 8 | export class Headers16Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/headers/headers-17.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/headers/headers-17.component.css -------------------------------------------------------------------------------- /src/app/headers/headers-17.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'headers-17', 5 | templateUrl: './headers-17.component.html', 6 | styleUrls: ['./headers-17.component.css'] 7 | }) 8 | export class Headers17Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/headers/headers-18.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/headers/headers-18.component.css -------------------------------------------------------------------------------- /src/app/headers/headers-18.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'headers-18', 5 | templateUrl: './headers-18.component.html', 6 | styleUrls: ['./headers-18.component.css'] 7 | }) 8 | export class Headers18Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/headers/headers-19.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/headers/headers-19.component.css -------------------------------------------------------------------------------- /src/app/headers/headers-19.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'headers-19', 5 | templateUrl: './headers-19.component.html', 6 | styleUrls: ['./headers-19.component.css'] 7 | }) 8 | export class Headers19Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/headers/headers-20.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/headers/headers-20.component.css -------------------------------------------------------------------------------- /src/app/headers/headers-20.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'headers-20', 5 | templateUrl: './headers-20.component.html', 6 | styleUrls: ['./headers-20.component.css'] 7 | }) 8 | export class Headers20Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/pages/call-to-action.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | let tmpl = ''; 4 | for (let i = 0; i < 22; i++) { 5 | tmpl += `` 6 | } 7 | 8 | @Component({ 9 | selector: 'call-to-action', 10 | template: tmpl, 11 | }) 12 | 13 | export class CallToActionComponent { 14 | } 15 | -------------------------------------------------------------------------------- /src/app/pages/contacts.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | let tmpl = ''; 4 | for (let i = 0; i < 10; i++) { 5 | tmpl += `` 6 | } 7 | 8 | @Component({ 9 | selector: 'contacts', 10 | template: tmpl, 11 | }) 12 | 13 | export class ContactsComponent { 14 | } 15 | -------------------------------------------------------------------------------- /src/app/pages/contents.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | let tmpl = ''; 4 | for (let i = 0; i < 34; i++) { 5 | tmpl += `` 6 | } 7 | 8 | @Component({ 9 | selector: 'contents', 10 | template: tmpl, 11 | }) 12 | 13 | export class ContentsComponent { 14 | } 15 | -------------------------------------------------------------------------------- /src/app/pages/features.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | let tmpl = ''; 4 | for (let i = 0; i < 33; i++) { 5 | tmpl += `` 6 | } 7 | 8 | @Component({ 9 | selector: 'features', 10 | template: tmpl, 11 | }) 12 | 13 | export class FeaturesComponent { 14 | } 15 | -------------------------------------------------------------------------------- /src/app/pages/footers.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | let tmpl = ''; 4 | for (let i = 0; i < 12; i++) { 5 | tmpl += `` 6 | } 7 | 8 | @Component({ 9 | selector: 'footers', 10 | template: tmpl, 11 | }) 12 | 13 | export class FootersComponent { 14 | } 15 | -------------------------------------------------------------------------------- /src/app/pages/forms.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | let tmpl = ''; 4 | for (let i = 0; i < 12; i++) { 5 | tmpl += `` 6 | } 7 | 8 | @Component({ 9 | selector: 'forms', 10 | template: tmpl, 11 | }) 12 | 13 | export class FormsComponent { 14 | } 15 | -------------------------------------------------------------------------------- /src/app/pages/headers.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | let tmpl = ''; 4 | for (let i = 0; i < 20; i++) { 5 | tmpl += `` 6 | } 7 | 8 | @Component({ 9 | selector: 'headers', 10 | template: tmpl, 11 | }) 12 | 13 | export class HeadersComponent { 14 | } 15 | -------------------------------------------------------------------------------- /src/app/pages/pricings.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | let tmpl = ''; 4 | for (let i = 0; i < 10; i++) { 5 | tmpl += `` 6 | } 7 | 8 | @Component({ 9 | selector: 'pricings', 10 | template: tmpl, 11 | }) 12 | 13 | export class PricingsComponent { 14 | } 15 | -------------------------------------------------------------------------------- /src/app/pages/teams.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | let tmpl = ''; 4 | for (let i = 0; i < 8; i++) { 5 | tmpl += `` 6 | } 7 | 8 | @Component({ 9 | selector: 'teams', 10 | template: tmpl, 11 | }) 12 | 13 | export class TeamsComponent { 14 | } 15 | -------------------------------------------------------------------------------- /src/app/pages/testimonials.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | let tmpl = ''; 4 | for (let i = 0; i < 10; i++) { 5 | tmpl += `` 6 | } 7 | 8 | @Component({ 9 | selector: 'testimonials', 10 | template: tmpl, 11 | }) 12 | 13 | export class TestimonialsComponent { 14 | } 15 | -------------------------------------------------------------------------------- /src/app/pricings/pricings-01.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/pricings/pricings-01.component.css -------------------------------------------------------------------------------- /src/app/pricings/pricings-01.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'pricings-01', 5 | templateUrl: './pricings-01.component.html', 6 | styleUrls: ['./pricings-01.component.css'] 7 | }) 8 | export class Pricings01Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/pricings/pricings-02.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/pricings/pricings-02.component.css -------------------------------------------------------------------------------- /src/app/pricings/pricings-02.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'pricings-02', 5 | templateUrl: './pricings-02.component.html', 6 | styleUrls: ['./pricings-02.component.css'] 7 | }) 8 | export class Pricings02Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/pricings/pricings-03.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/pricings/pricings-03.component.css -------------------------------------------------------------------------------- /src/app/pricings/pricings-03.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'pricings-03', 5 | templateUrl: './pricings-03.component.html', 6 | styleUrls: ['./pricings-03.component.css'] 7 | }) 8 | export class Pricings03Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/pricings/pricings-04.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/pricings/pricings-04.component.css -------------------------------------------------------------------------------- /src/app/pricings/pricings-04.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'pricings-04', 5 | templateUrl: './pricings-04.component.html', 6 | styleUrls: ['./pricings-04.component.css'] 7 | }) 8 | export class Pricings04Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/pricings/pricings-05.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/pricings/pricings-05.component.css -------------------------------------------------------------------------------- /src/app/pricings/pricings-05.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'pricings-05', 5 | templateUrl: './pricings-05.component.html', 6 | styleUrls: ['./pricings-05.component.css'] 7 | }) 8 | export class Pricings05Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/pricings/pricings-06.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/pricings/pricings-06.component.css -------------------------------------------------------------------------------- /src/app/pricings/pricings-06.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'pricings-06', 5 | templateUrl: './pricings-06.component.html', 6 | styleUrls: ['./pricings-06.component.css'] 7 | }) 8 | export class Pricings06Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/pricings/pricings-07.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/pricings/pricings-07.component.css -------------------------------------------------------------------------------- /src/app/pricings/pricings-07.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'pricings-07', 5 | templateUrl: './pricings-07.component.html', 6 | styleUrls: ['./pricings-07.component.css'] 7 | }) 8 | export class Pricings07Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/pricings/pricings-08.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/pricings/pricings-08.component.css -------------------------------------------------------------------------------- /src/app/pricings/pricings-08.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'pricings-08', 5 | templateUrl: './pricings-08.component.html', 6 | styleUrls: ['./pricings-08.component.css'] 7 | }) 8 | export class Pricings08Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/pricings/pricings-09.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/pricings/pricings-09.component.css -------------------------------------------------------------------------------- /src/app/pricings/pricings-09.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'pricings-09', 5 | templateUrl: './pricings-09.component.html', 6 | styleUrls: ['./pricings-09.component.css'] 7 | }) 8 | export class Pricings09Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/pricings/pricings-10.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/pricings/pricings-10.component.css -------------------------------------------------------------------------------- /src/app/pricings/pricings-10.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'pricings-10', 5 | templateUrl: './pricings-10.component.html', 6 | styleUrls: ['./pricings-10.component.css'] 7 | }) 8 | export class Pricings10Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/teams/teams-01.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/teams/teams-01.component.css -------------------------------------------------------------------------------- /src/app/teams/teams-01.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'teams-01', 5 | templateUrl: './teams-01.component.html', 6 | styleUrls: ['./teams-01.component.css'] 7 | }) 8 | export class Teams01Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/teams/teams-01.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Teams01Component } from './teams-01.component'; 4 | 5 | describe('Teams01Component', () => { 6 | let component: Teams01Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Teams01Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Teams01Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/teams/teams-02.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/teams/teams-02.component.css -------------------------------------------------------------------------------- /src/app/teams/teams-02.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'teams-02', 5 | templateUrl: './teams-02.component.html', 6 | styleUrls: ['./teams-02.component.css'] 7 | }) 8 | export class Teams02Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/teams/teams-02.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Teams02Component } from './teams-02.component'; 4 | 5 | describe('Teams02Component', () => { 6 | let component: Teams02Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Teams02Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Teams02Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/teams/teams-03.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/teams/teams-03.component.css -------------------------------------------------------------------------------- /src/app/teams/teams-03.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'teams-03', 5 | templateUrl: './teams-03.component.html', 6 | styleUrls: ['./teams-03.component.css'] 7 | }) 8 | export class Teams03Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/teams/teams-03.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Teams03Component } from './teams-03.component'; 4 | 5 | describe('Teams03Component', () => { 6 | let component: Teams03Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Teams03Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Teams03Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/teams/teams-04.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/teams/teams-04.component.css -------------------------------------------------------------------------------- /src/app/teams/teams-04.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'teams-04', 5 | templateUrl: './teams-04.component.html', 6 | styleUrls: ['./teams-04.component.css'] 7 | }) 8 | export class Teams04Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/teams/teams-04.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Teams04Component } from './teams-04.component'; 4 | 5 | describe('Teams04Component', () => { 6 | let component: Teams04Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Teams04Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Teams04Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/teams/teams-05.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/teams/teams-05.component.css -------------------------------------------------------------------------------- /src/app/teams/teams-05.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'teams-05', 5 | templateUrl: './teams-05.component.html', 6 | styleUrls: ['./teams-05.component.css'] 7 | }) 8 | export class Teams05Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/teams/teams-05.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Teams05Component } from './teams-05.component'; 4 | 5 | describe('Teams05Component', () => { 6 | let component: Teams05Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Teams05Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Teams05Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/teams/teams-06.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/teams/teams-06.component.css -------------------------------------------------------------------------------- /src/app/teams/teams-06.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'teams-06', 5 | templateUrl: './teams-06.component.html', 6 | styleUrls: ['./teams-06.component.css'] 7 | }) 8 | export class Teams06Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/teams/teams-06.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Teams06Component } from './teams-06.component'; 4 | 5 | describe('Teams06Component', () => { 6 | let component: Teams06Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Teams06Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Teams06Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/teams/teams-07.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/teams/teams-07.component.css -------------------------------------------------------------------------------- /src/app/teams/teams-07.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'teams-07', 5 | templateUrl: './teams-07.component.html', 6 | styleUrls: ['./teams-07.component.css'] 7 | }) 8 | export class Teams07Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/teams/teams-07.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Teams07Component } from './teams-07.component'; 4 | 5 | describe('Teams07Component', () => { 6 | let component: Teams07Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Teams07Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Teams07Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/teams/teams-08.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/teams/teams-08.component.css -------------------------------------------------------------------------------- /src/app/teams/teams-08.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'teams-08', 5 | templateUrl: './teams-08.component.html', 6 | styleUrls: ['./teams-08.component.css'] 7 | }) 8 | export class Teams08Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/teams/teams-08.spec.ts: -------------------------------------------------------------------------------- 1 | import { ComponentFixture, TestBed, async } from '@angular/core/testing'; 2 | 3 | import { Teams08Component } from './teams-08.component'; 4 | 5 | describe('Teams08Component', () => { 6 | let component: Teams08Component; 7 | let fixture: ComponentFixture; 8 | 9 | beforeEach(async(() => { 10 | TestBed.configureTestingModule({ 11 | declarations: [ Teams08Component ] 12 | }) 13 | .compileComponents(); 14 | })); 15 | 16 | beforeEach(() => { 17 | fixture = TestBed.createComponent(Teams08Component); 18 | component = fixture.componentInstance; 19 | fixture.detectChanges(); 20 | }); 21 | 22 | it('should create', () => { 23 | expect(component).toBeTruthy(); 24 | }); 25 | }); -------------------------------------------------------------------------------- /src/app/testimonials/testimonials-01.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/testimonials/testimonials-01.component.css -------------------------------------------------------------------------------- /src/app/testimonials/testimonials-01.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'testimonials-01', 5 | templateUrl: './testimonials-01.component.html', 6 | styleUrls: ['./testimonials-01.component.css'] 7 | }) 8 | export class Testimonials01Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/testimonials/testimonials-02.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/testimonials/testimonials-02.component.css -------------------------------------------------------------------------------- /src/app/testimonials/testimonials-02.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'testimonials-02', 5 | templateUrl: './testimonials-02.component.html', 6 | styleUrls: ['./testimonials-02.component.css'] 7 | }) 8 | export class Testimonials02Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/testimonials/testimonials-03.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/testimonials/testimonials-03.component.css -------------------------------------------------------------------------------- /src/app/testimonials/testimonials-03.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'testimonials-03', 5 | templateUrl: './testimonials-03.component.html', 6 | styleUrls: ['./testimonials-03.component.css'] 7 | }) 8 | export class Testimonials03Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/testimonials/testimonials-04.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/testimonials/testimonials-04.component.css -------------------------------------------------------------------------------- /src/app/testimonials/testimonials-04.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'testimonials-04', 5 | templateUrl: './testimonials-04.component.html', 6 | styleUrls: ['./testimonials-04.component.css'] 7 | }) 8 | export class Testimonials04Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/testimonials/testimonials-05.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/testimonials/testimonials-05.component.css -------------------------------------------------------------------------------- /src/app/testimonials/testimonials-05.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'testimonials-05', 5 | templateUrl: './testimonials-05.component.html', 6 | styleUrls: ['./testimonials-05.component.css'] 7 | }) 8 | export class Testimonials05Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/testimonials/testimonials-06.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/testimonials/testimonials-06.component.css -------------------------------------------------------------------------------- /src/app/testimonials/testimonials-06.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'testimonials-06', 5 | templateUrl: './testimonials-06.component.html', 6 | styleUrls: ['./testimonials-06.component.css'] 7 | }) 8 | export class Testimonials06Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/testimonials/testimonials-07.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/testimonials/testimonials-07.component.css -------------------------------------------------------------------------------- /src/app/testimonials/testimonials-07.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'testimonials-07', 5 | templateUrl: './testimonials-07.component.html', 6 | styleUrls: ['./testimonials-07.component.css'] 7 | }) 8 | export class Testimonials07Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/testimonials/testimonials-08.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/testimonials/testimonials-08.component.css -------------------------------------------------------------------------------- /src/app/testimonials/testimonials-08.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'testimonials-08', 5 | templateUrl: './testimonials-08.component.html', 6 | styleUrls: ['./testimonials-08.component.css'] 7 | }) 8 | export class Testimonials08Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/testimonials/testimonials-09.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/testimonials/testimonials-09.component.css -------------------------------------------------------------------------------- /src/app/testimonials/testimonials-09.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'testimonials-09', 5 | templateUrl: './testimonials-09.component.html', 6 | styleUrls: ['./testimonials-09.component.css'] 7 | }) 8 | export class Testimonials09Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/app/testimonials/testimonials-10.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/app/testimonials/testimonials-10.component.css -------------------------------------------------------------------------------- /src/app/testimonials/testimonials-10.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'testimonials-10', 5 | templateUrl: './testimonials-10.component.html', 6 | styleUrls: ['./testimonials-10.component.css'] 7 | }) 8 | export class Testimonials10Component implements OnInit { 9 | constructor() { } 10 | 11 | ngOnInit() { 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/assets/.gitkeep -------------------------------------------------------------------------------- /src/assets/logo-angluar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/assets/logo-angluar.png -------------------------------------------------------------------------------- /src/browserslist: -------------------------------------------------------------------------------- 1 | # This file is currently used by autoprefixer to adjust CSS to support the below specified browsers 2 | # For additional information regarding the format and rule options, please see: 3 | # https://github.com/browserslist/browserslist#queries 4 | # For IE 9-11 support, please uncomment the last line of the file and adjust as needed 5 | > 0.5% 6 | last 2 versions 7 | Firefox ESR 8 | not dead 9 | # IE 9-11 -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- 1 | // This file can be replaced during build by using the `fileReplacements` array. 2 | // `ng build ---prod` replaces `environment.ts` with `environment.prod.ts`. 3 | // The list of file replacements can be found in `angular.json`. 4 | 5 | export const environment = { 6 | production: false 7 | }; 8 | 9 | /* 10 | * In development mode, to ignore zone related error stack frames such as 11 | * `zone.run`, `zoneDelegate.invokeTask` for easier debugging, you can 12 | * import the following file, but please comment it out in production mode 13 | * because it will have performance impact when throw error 14 | */ 15 | // import 'zone.js/dist/zone-error'; // Included with Angular CLI. 16 | -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/angular-froala-design-blocks/72910200640a13dba5eb342777b1d8bec2502ac7/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | AngularFroalaDesignBlocks 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- 1 | import { enableProdMode } from '@angular/core'; 2 | import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; 3 | 4 | import { AppModule } from './app/app.module'; 5 | import { environment } from './environments/environment'; 6 | 7 | if (environment.production) { 8 | enableProdMode(); 9 | } 10 | 11 | platformBrowserDynamic().bootstrapModule(AppModule) 12 | .catch(err => console.log(err)); 13 | -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- 1 | // This file is required by karma.conf.js and loads recursively all the .spec and framework files 2 | 3 | import 'zone.js/dist/zone-testing'; 4 | import { getTestBed } from '@angular/core/testing'; 5 | import { 6 | BrowserDynamicTestingModule, 7 | platformBrowserDynamicTesting 8 | } from '@angular/platform-browser-dynamic/testing'; 9 | 10 | declare const require: any; 11 | 12 | // First, initialize the Angular testing environment. 13 | getTestBed().initTestEnvironment( 14 | BrowserDynamicTestingModule, 15 | platformBrowserDynamicTesting() 16 | ); 17 | // Then we find all the tests. 18 | const context = require.context('./', true, /\.spec\.ts$/); 19 | // And load the modules. 20 | context.keys().map(context); 21 | -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/app", 5 | "types": [] 6 | }, 7 | "exclude": [ 8 | "src/test.ts", 9 | "**/*.spec.ts" 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/spec", 5 | "types": [ 6 | "jasmine", 7 | "node" 8 | ] 9 | }, 10 | "files": [ 11 | "test.ts", 12 | "polyfills.ts" 13 | ], 14 | "include": [ 15 | "**/*.spec.ts", 16 | "**/*.d.ts" 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /src/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tslint.json", 3 | "rules": { 4 | "directive-selector": [ 5 | true, 6 | "attribute", 7 | "app", 8 | "camelCase" 9 | ], 10 | "component-selector": [ 11 | true, 12 | "element", 13 | "app", 14 | "kebab-case" 15 | ] 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compileOnSave": false, 3 | "compilerOptions": { 4 | "baseUrl": "./", 5 | "outDir": "./dist/out-tsc", 6 | "sourceMap": true, 7 | "declaration": false, 8 | "module": "es2015", 9 | "moduleResolution": "node", 10 | "emitDecoratorMetadata": true, 11 | "experimentalDecorators": true, 12 | "target": "es5", 13 | "typeRoots": [ 14 | "node_modules/@types" 15 | ], 16 | "lib": [ 17 | "es2017", 18 | "dom" 19 | ] 20 | } 21 | } 22 | --------------------------------------------------------------------------------