Skip to content

Commit ecd36fd

Browse files
committed
Move intro text to app component.
1 parent 212e269 commit ecd36fd

File tree

2 files changed

+15
-13
lines changed

2 files changed

+15
-13
lines changed

index.html

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,6 @@
1919
<script type="module" src="/src/app.ts"></script>
2020
</head>
2121
<body>
22-
<h1>URL Classifier Exceptions</h1>
23-
<p>
24-
This dashboard lists all exceptions for Firefox's (list based) Enhanced
25-
Tracking Protection (ETP). Exceptions may be applied when websites break
26-
due to tracker blocking. This ensures Firefox can protect the privacy of
27-
users while still keeping websites working. See
28-
<a href="https://wiki.mozilla.org/Security/Anti_tracking_policy#Policy_Exceptions"
29-
target="_blank"
30-
rel="noopener noreferrer"
31-
>our anti-tracking policy</a
32-
>
33-
for more information.
34-
</p>
3522
<app-root></app-root>
3623
</body>
3724
</html>

src/app.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,21 @@ export class App extends LitElement {
184184
render() {
185185
return html`
186186
<div class="container">
187+
<h1>URL Classifier Exceptions</h1>
188+
<p>
189+
This dashboard lists all exceptions for Firefox's (list based) Enhanced Tracking
190+
Protection (ETP). Exceptions may be applied when websites break due to tracker blocking.
191+
This ensures Firefox can protect the privacy of users while still keeping websites
192+
working. See
193+
<a
194+
href="https://wiki.mozilla.org/Security/Anti_tracking_policy#Policy_Exceptions"
195+
target="_blank"
196+
rel="noopener noreferrer"
197+
>our anti-tracking policy</a
198+
>
199+
for more information.
200+
</p>
201+
187202
${this.renderMainContent()}
188203
189204
<footer>

0 commit comments

Comments
 (0)