diff options
author | Chocobozzz <me@florianbigard.com> | 2018-01-31 17:47:36 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-01-31 17:51:04 +0100 |
commit | 36f9424ff192b0584a433bc196bced6fcf265808 (patch) | |
tree | 35d9fa5c53b228f5e7fc27bcc82854d035e9dde8 /client/src/app/about/about.component.html | |
parent | 66b16cafb380012d3eca14e524d86f2450e04069 (diff) | |
download | PeerTube-36f9424ff192b0584a433bc196bced6fcf265808.tar.gz PeerTube-36f9424ff192b0584a433bc196bced6fcf265808.tar.zst PeerTube-36f9424ff192b0584a433bc196bced6fcf265808.zip |
Add about page
Diffstat (limited to 'client/src/app/about/about.component.html')
-rw-r--r-- | client/src/app/about/about.component.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/client/src/app/about/about.component.html b/client/src/app/about/about.component.html new file mode 100644 index 000000000..c0be53581 --- /dev/null +++ b/client/src/app/about/about.component.html | |||
@@ -0,0 +1,17 @@ | |||
1 | <div class="margin-content"> | ||
2 | <div class="title-page title-page-single"> | ||
3 | Welcome to the {{ instanceName }} instance | ||
4 | </div> | ||
5 | |||
6 | <div class="description"> | ||
7 | <div class="section-title">Description</div> | ||
8 | |||
9 | <div [innerHTML]="descriptionHTML"></div> | ||
10 | </div> | ||
11 | |||
12 | <div class="terms"> | ||
13 | <div class="section-title">Terms</div> | ||
14 | |||
15 | <div [innerHTML]="termsHTML"></div> | ||
16 | </div> | ||
17 | </div> | ||