diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index cf41164407..3ccf1000fe 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -495,12 +495,9 @@
/aio/content/images/guide/lifecycle-hooks/** @angular/fw-core @angular/framework-global-approvers @angular/framework-global-approvers-for-docs-only-changes
/aio/content/examples/ngcontainer/** @angular/fw-core @angular/framework-global-approvers @angular/framework-global-approvers-for-docs-only-changes
-/aio/content/images/guide/ngcontainer/** @angular/fw-core @angular/framework-global-approvers @angular/framework-global-approvers-for-docs-only-changes
/aio/content/guide/ngmodules.md @angular/fw-core @angular/framework-global-approvers @angular/framework-global-approvers-for-docs-only-changes
/aio/content/examples/ngmodules/** @angular/fw-core @angular/framework-global-approvers @angular/framework-global-approvers-for-docs-only-changes
-/aio/content/examples/ngmodule/** @angular/fw-core @angular/framework-global-approvers @angular/framework-global-approvers-for-docs-only-changes
-/aio/content/images/guide/ngmodule/** @angular/fw-core @angular/framework-global-approvers @angular/framework-global-approvers-for-docs-only-changes
/aio/content/guide/ngmodule-api.md @angular/fw-core @angular/framework-global-approvers @angular/framework-global-approvers-for-docs-only-changes
@@ -762,11 +759,9 @@ testing/** @angular/fw-test
/aio/content/guide/observables.md @angular/fw-docs-observables @angular/framework-global-approvers @angular/framework-global-approvers-for-docs-only-changes
/aio/content/examples/observables/** @angular/fw-docs-observables @angular/framework-global-approvers @angular/framework-global-approvers-for-docs-only-changes
-/aio/content/images/guide/observables/** @angular/fw-docs-observables @angular/framework-global-approvers @angular/framework-global-approvers-for-docs-only-changes
/aio/content/guide/comparing-observables.md @angular/fw-docs-observables @angular/framework-global-approvers @angular/framework-global-approvers-for-docs-only-changes
/aio/content/guide/observables-in-angular.md @angular/fw-docs-observables @angular/framework-global-approvers @angular/framework-global-approvers-for-docs-only-changes
/aio/content/examples/observables-in-angular/** @angular/fw-docs-observables @angular/framework-global-approvers @angular/framework-global-approvers-for-docs-only-changes
-/aio/content/images/guide/observables-in-angular/** @angular/fw-docs-observables @angular/framework-global-approvers @angular/framework-global-approvers-for-docs-only-changes
/aio/content/guide/practical-observable-usage.md @angular/fw-docs-observables @angular/framework-global-approvers @angular/framework-global-approvers-for-docs-only-changes
/aio/content/examples/practical-observable-usage/** @angular/fw-docs-observables @angular/framework-global-approvers @angular/framework-global-approvers-for-docs-only-changes
/aio/content/guide/rx-library.md @angular/fw-docs-observables @angular/framework-global-approvers @angular/framework-global-approvers-for-docs-only-changes
@@ -782,7 +777,6 @@ testing/** @angular/fw-test
/aio/content/guide/browser-support.md @angular/fw-docs-packaging @angular/framework-global-approvers @angular/framework-global-approvers-for-docs-only-changes
/aio/content/guide/typescript-configuration.md @angular/fw-docs-packaging @angular/framework-global-approvers @angular/framework-global-approvers-for-docs-only-changes
/aio/content/examples/quickstart/** @angular/fw-docs-packaging @angular/framework-global-approvers @angular/framework-global-approvers-for-docs-only-changes
-/aio/content/guide/setup-systemjs-anatomy.md @angular/fw-docs-packaging @angular/framework-global-approvers @angular/framework-global-approvers-for-docs-only-changes
/aio/content/guide/setup.md @angular/fw-docs-packaging @angular/framework-global-approvers @angular/framework-global-approvers-for-docs-only-changes
/aio/content/examples/setup/** @angular/fw-docs-packaging @angular/framework-global-approvers @angular/framework-global-approvers-for-docs-only-changes
/aio/content/guide/build.md @angular/fw-docs-packaging @angular/framework-global-approvers @angular/framework-global-approvers-for-docs-only-changes
diff --git a/aio/content/examples/property-binding/src/app/app.component.ts b/aio/content/examples/property-binding/src/app/app.component.ts
deleted file mode 100644
index 1c52d44ebe..0000000000
--- a/aio/content/examples/property-binding/src/app/app.component.ts
+++ /dev/null
@@ -1,30 +0,0 @@
-import { Component } from '@angular/core';
-
-
-@Component({
- selector: 'app-root',
- templateUrl: './app.component.html',
- styleUrls: ['./app.component.css']
-})
-export class AppComponent {
- itemImageUrl = '../assets/lamp.png';
- isUnchanged = true;
- classes = 'special';
- // #docregion parent-data-type
- parentItem = 'bananas';
- // #enddocregion parent-data-type
-
- // #docregion pass-object
- currentItem = [{
- id: 21,
- name: 'peaches'
- }];
- // #enddocregion pass-object
-
- interpolationTitle = 'Interpolation';
- propertyTitle = 'Property binding';
-
- // #docregion malicious-content
- evilTitle = 'Template Syntax';
- // #enddocregion malicious-content
-}
diff --git a/aio/content/guide/template-syntax.md b/aio/content/guide/template-syntax.md
index 4e177a3b85..0df3622663 100644
--- a/aio/content/guide/template-syntax.md
+++ b/aio/content/guide/template-syntax.md
@@ -956,7 +956,7 @@ The following event binding listens for the button's click events, calling
the component's `onSave()` method whenever a click occurs:
-
+
### Target event
diff --git a/aio/content/images/guide/application-under-test/bongos-heroes.png b/aio/content/images/guide/application-under-test/bongos-heroes.png
deleted file mode 100644
index 17e4861d8e..0000000000
Binary files a/aio/content/images/guide/application-under-test/bongos-heroes.png and /dev/null differ
diff --git a/aio/content/images/guide/first-app-tests/Jasmine-not-running-tests.png b/aio/content/images/guide/first-app-tests/Jasmine-not-running-tests.png
deleted file mode 100644
index 777dc7632c..0000000000
Binary files a/aio/content/images/guide/first-app-tests/Jasmine-not-running-tests.png and /dev/null differ
diff --git a/aio/content/images/guide/first-app-tests/passed-2-specs-0-failures.png b/aio/content/images/guide/first-app-tests/passed-2-specs-0-failures.png
deleted file mode 100644
index 1c0dbb680d..0000000000
Binary files a/aio/content/images/guide/first-app-tests/passed-2-specs-0-failures.png and /dev/null differ
diff --git a/aio/content/images/guide/first-app-tests/test-passed-once-again.png b/aio/content/images/guide/first-app-tests/test-passed-once-again.png
deleted file mode 100644
index 258c0dd390..0000000000
Binary files a/aio/content/images/guide/first-app-tests/test-passed-once-again.png and /dev/null differ
diff --git a/aio/content/images/guide/intro/people.png b/aio/content/images/guide/intro/people.png
deleted file mode 100644
index 64efccfe07..0000000000
Binary files a/aio/content/images/guide/intro/people.png and /dev/null differ
diff --git a/aio/content/images/guide/jasmine-testing-101/jasmine-1-spec-0-failures.png b/aio/content/images/guide/jasmine-testing-101/jasmine-1-spec-0-failures.png
deleted file mode 100644
index 6115a865a3..0000000000
Binary files a/aio/content/images/guide/jasmine-testing-101/jasmine-1-spec-0-failures.png and /dev/null differ
diff --git a/aio/content/images/guide/jasmine-testing-101/null-to-equal-undefined.png b/aio/content/images/guide/jasmine-testing-101/null-to-equal-undefined.png
deleted file mode 100644
index 5f7a7bd847..0000000000
Binary files a/aio/content/images/guide/jasmine-testing-101/null-to-equal-undefined.png and /dev/null differ
diff --git a/aio/content/images/guide/jasmine-testing-101/spec-list-2-specs-1-failure.png b/aio/content/images/guide/jasmine-testing-101/spec-list-2-specs-1-failure.png
deleted file mode 100644
index 8e64105574..0000000000
Binary files a/aio/content/images/guide/jasmine-testing-101/spec-list-2-specs-1-failure.png and /dev/null differ
diff --git a/aio/content/images/guide/jasmine-testing-101/test-report-1-spec-0-failures.png b/aio/content/images/guide/jasmine-testing-101/test-report-1-spec-0-failures.png
deleted file mode 100644
index dd85b01a09..0000000000
Binary files a/aio/content/images/guide/jasmine-testing-101/test-report-1-spec-0-failures.png and /dev/null differ
diff --git a/aio/content/images/guide/jasmine-testing-101/test-report-2-specs-0-failures.png b/aio/content/images/guide/jasmine-testing-101/test-report-2-specs-0-failures.png
deleted file mode 100644
index c6e1ba022a..0000000000
Binary files a/aio/content/images/guide/jasmine-testing-101/test-report-2-specs-0-failures.png and /dev/null differ
diff --git a/aio/content/images/guide/jasmine-testing-101/test-report-2-specs-1-failure.png b/aio/content/images/guide/jasmine-testing-101/test-report-2-specs-1-failure.png
deleted file mode 100644
index f896018689..0000000000
Binary files a/aio/content/images/guide/jasmine-testing-101/test-report-2-specs-1-failure.png and /dev/null differ
diff --git a/aio/content/images/guide/ngcontainer/hero-traits-bad.png b/aio/content/images/guide/ngcontainer/hero-traits-bad.png
deleted file mode 100644
index 37e23a5ec6..0000000000
Binary files a/aio/content/images/guide/ngcontainer/hero-traits-bad.png and /dev/null differ
diff --git a/aio/content/images/guide/ngcontainer/hero-traits-good.png b/aio/content/images/guide/ngcontainer/hero-traits-good.png
deleted file mode 100644
index 0ce389b2a3..0000000000
Binary files a/aio/content/images/guide/ngcontainer/hero-traits-good.png and /dev/null differ
diff --git a/aio/content/images/guide/ngmodule/contact-1b-plunker.png b/aio/content/images/guide/ngmodule/contact-1b-plunker.png
deleted file mode 100644
index 4063efc23d..0000000000
Binary files a/aio/content/images/guide/ngmodule/contact-1b-plunker.png and /dev/null differ
diff --git a/aio/content/images/guide/ngmodule/contact-2-plunker.png b/aio/content/images/guide/ngmodule/contact-2-plunker.png
deleted file mode 100644
index 909f928e3d..0000000000
Binary files a/aio/content/images/guide/ngmodule/contact-2-plunker.png and /dev/null differ
diff --git a/aio/content/images/guide/ngmodule/final-plunker.png b/aio/content/images/guide/ngmodule/final-plunker.png
deleted file mode 100644
index 4669a6601b..0000000000
Binary files a/aio/content/images/guide/ngmodule/final-plunker.png and /dev/null differ
diff --git a/aio/content/images/guide/ngmodule/minimal-plunker.png b/aio/content/images/guide/ngmodule/minimal-plunker.png
deleted file mode 100644
index 0c7bb90e98..0000000000
Binary files a/aio/content/images/guide/ngmodule/minimal-plunker.png and /dev/null differ
diff --git a/aio/content/images/guide/ngmodule/v3-plunker.png b/aio/content/images/guide/ngmodule/v3-plunker.png
deleted file mode 100644
index 5888ebfe5a..0000000000
Binary files a/aio/content/images/guide/ngmodule/v3-plunker.png and /dev/null differ
diff --git a/aio/content/images/guide/quickstart/hello-angular.png b/aio/content/images/guide/quickstart/hello-angular.png
deleted file mode 100644
index 751728014a..0000000000
Binary files a/aio/content/images/guide/quickstart/hello-angular.png and /dev/null differ
diff --git a/aio/content/images/guide/quickstart/my-first-app.png b/aio/content/images/guide/quickstart/my-first-app.png
deleted file mode 100644
index 836dc673ef..0000000000
Binary files a/aio/content/images/guide/quickstart/my-first-app.png and /dev/null differ
diff --git a/aio/content/images/guide/quickstart/quickstart-plnkr-big.png b/aio/content/images/guide/quickstart/quickstart-plnkr-big.png
deleted file mode 100644
index 0738a4a4eb..0000000000
Binary files a/aio/content/images/guide/quickstart/quickstart-plnkr-big.png and /dev/null differ
diff --git a/aio/content/images/guide/quickstart/quickstart-plnkr.png b/aio/content/images/guide/quickstart/quickstart-plnkr.png
deleted file mode 100644
index 757c70dac3..0000000000
Binary files a/aio/content/images/guide/quickstart/quickstart-plnkr.png and /dev/null differ
diff --git a/aio/content/images/guide/event-binding/syntax-diagram.svg b/aio/content/images/guide/template-syntax/syntax-diagram.svg
similarity index 100%
rename from aio/content/images/guide/event-binding/syntax-diagram.svg
rename to aio/content/images/guide/template-syntax/syntax-diagram.svg
diff --git a/aio/content/images/guide/testing-an-angular-pipe/5-specs-0-failures.png b/aio/content/images/guide/testing-an-angular-pipe/5-specs-0-failures.png
deleted file mode 100644
index 8d88069e37..0000000000
Binary files a/aio/content/images/guide/testing-an-angular-pipe/5-specs-0-failures.png and /dev/null differ
diff --git a/aio/content/images/guide/testing-an-angular-pipe/big-time-fail-screen.png b/aio/content/images/guide/testing-an-angular-pipe/big-time-fail-screen.png
deleted file mode 100644
index a1525c3996..0000000000
Binary files a/aio/content/images/guide/testing-an-angular-pipe/big-time-fail-screen.png and /dev/null differ
diff --git a/aio/content/images/guide/testing-an-angular-pipe/two-failures.png b/aio/content/images/guide/testing-an-angular-pipe/two-failures.png
deleted file mode 100644
index 49d496c778..0000000000
Binary files a/aio/content/images/guide/testing-an-angular-pipe/two-failures.png and /dev/null differ
diff --git a/aio/content/images/guide/testing-an-angular-pipe/zero-failures.png b/aio/content/images/guide/testing-an-angular-pipe/zero-failures.png
deleted file mode 100644
index f461fee889..0000000000
Binary files a/aio/content/images/guide/testing-an-angular-pipe/zero-failures.png and /dev/null differ
diff --git a/aio/content/images/guide/unit-testing/spectrum.png b/aio/content/images/guide/unit-testing/spectrum.png
deleted file mode 100644
index 2a5f123afc..0000000000
Binary files a/aio/content/images/guide/unit-testing/spectrum.png and /dev/null differ