]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+about/about-instance/about-instance.component.html
Clearer video creation from API regarding rates
[github/Chocobozzz/PeerTube.git] / client / src / app / +about / about-instance / about-instance.component.html
CommitLineData
56af5222
C
1<div class="row">
2 <div class="col-md-12 col-xl-6">
ccc00cb2 3
d3e56c0c 4 <div class="about-instance-title">
c9e3565d 5 <h1 i18n class="title">About {{ instanceName }}</h1>
d3e56c0c 6
4e1592da 7 <a routerLink="/about/contact" i18n *ngIf="isContactFormEnabled" class="contact-admin">Contact us</a>
56af5222 8 </div>
78f912ed 9
fd7ca7a7 10 <div class="instance-badges" *ngIf="categories.length !== 0 || languages.length !== 0">
9fe1bc68
C
11 <span *ngFor="let category of categories" class="badge badge-primary category">{{ category }}</span>
12
13 <span *ngFor="let language of languages" class="badge badge-secondary language">{{ language }}</span>
14 </div>
15
56af5222 16 <div class="short-description">
4402b54d 17 <div class="block short-description">{{ shortDescription }}</div>
c8000975 18
1eb23e12 19 <div i18n *ngIf="isNSFW" class="block dedicated-to-nsfw">This instance is dedicated to sensitive/NSFW content.</div>
56af5222 20 </div>
78f912ed 21
c2165d60 22 <div class="anchor" id="administrators-and-sustainability"></div>
23 <a
f45c7cc7 24 *ngIf="html.administrator || html.maintenanceLifetime || html.businessModel"
c2165d60 25 class="anchor-link"
f3081d64
K
26 routerLink="/about/instance"
27 fragment="administrators-and-sustainability"
28 #anchorLink
29 (click)="onClickCopyLink(anchorLink)"
c2165d60 30 >
31 <h2 i18n class="middle-title">
32 ADMINISTRATORS & SUSTAINABILITY
33 </h2>
34 </a>
ccc00cb2
C
35
36 <div class="block administrator" *ngIf="html.administrator">
c2165d60 37 <div class="anchor" id="administrators"></div>
f3081d64
K
38 <a
39 class="anchor-link"
40 routerLink="/about/instance"
41 fragment="administrators"
42 #anchorLink
43 (click)="onClickCopyLink(anchorLink)">
c2165d60 44 <h3 i18n class="section-title">Who we are</h3>
45 </a>
ccc00cb2
C
46
47 <div [innerHTML]="html.administrator"></div>
48 </div>
49
f45c7cc7 50 <div class="block creation-reason" *ngIf="html.creationReason">
c2165d60 51 <div class="anchor" id="creation-reason"></div>
f3081d64
K
52 <a
53 class="anchor-link"
54 routerLink="/about/instance"
55 fragment="creation-reason"
56 #anchorLink
57 (click)="onClickCopyLink(anchorLink)">
c2165d60 58 <h3 i18n class="section-title">Why we created this instance</h3>
59 </a>
8ae03c37 60
f45c7cc7 61 <div [innerHTML]="html.creationReason"></div>
8ae03c37
C
62 </div>
63
f45c7cc7 64 <div class="block maintenance-lifetime" *ngIf="html.maintenanceLifetime">
c2165d60 65 <div class="anchor" id="maintenance-lifetime"></div>
f3081d64
K
66 <a
67 class="anchor-link"
68 routerLink="/about/instance"
69 fragment="maintenance-lifetime"
70 #anchorLink
71 (click)="onClickCopyLink(anchorLink)">
c2165d60 72 <h3 i18n class="section-title">How long we plan to maintain this instance</h3>
73 </a>
ccc00cb2 74
f45c7cc7 75 <div [innerHTML]="html.maintenanceLifetime"></div>
ccc00cb2
C
76 </div>
77
f45c7cc7 78 <div class="block business-model" *ngIf="html.businessModel">
f3081d64
K
79 <div class="anchor" id="business-model"></div>
80 <a
81 class="anchor-link"
82 routerLink="/about/instance"
83 fragment="business-model"
84 #anchorLink
85 (click)="onClickCopyLink(anchorLink)">
db8b2f56 86 <h3 i18n class="section-title">How we will pay for keeping our instance running</h3>
c2165d60 87 </a>
ccc00cb2 88
f45c7cc7 89 <div [innerHTML]="html.businessModel"></div>
ccc00cb2
C
90 </div>
91
c2165d60 92 <div class="anchor" id="information"></div>
f3081d64 93 <a
8ee25e17 94 *ngIf="descriptionContent"
f3081d64
K
95 class="anchor-link"
96 routerLink="/about/instance"
97 fragment="information"
98 #anchorLink
99 (click)="onClickCopyLink(anchorLink)">
c2165d60 100 <h2 i18n class="middle-title">
101 INFORMATION
102 </h2>
103 </a>
ccc00cb2
C
104
105 <div class="block description">
c2165d60 106 <div class="anchor" id="description"></div>
f3081d64
K
107 <a
108 class="anchor-link"
109 routerLink="/about/instance"
110 fragment="description"
111 #anchorLink
112 (click)="onClickCopyLink(anchorLink)">
c2165d60 113 <h3 i18n class="section-title">Description</h3>
114 </a>
78f912ed 115
8ee25e17 116 <my-custom-markup-container [content]="descriptionContent"></my-custom-markup-container>
ccc00cb2
C
117 </div>
118
28c65567 119 <div myPluginSelector pluginSelectorId="about-instance-moderation">
120 <div class="anchor" id="moderation"></div>
f3081d64 121 <a
28c65567 122 *ngIf="html.moderationInformation || html.codeOfConduct || html.terms"
f3081d64
K
123 class="anchor-link"
124 routerLink="/about/instance"
28c65567 125 fragment="moderation"
f3081d64
K
126 #anchorLink
127 (click)="onClickCopyLink(anchorLink)">
28c65567 128 <h2 i18n class="middle-title">
129 MODERATION
130 </h2>
c2165d60 131 </a>
ccc00cb2 132
28c65567 133 <div class="block moderation-information" *ngIf="html.moderationInformation">
134 <div class="anchor" id="moderation-information"></div>
135 <a
136 class="anchor-link"
137 routerLink="/about/instance"
138 fragment="moderation-information"
139 #anchorLink
140 (click)="onClickCopyLink(anchorLink)">
141 <h3 i18n class="section-title">Moderation information</h3>
142 </a>
ccc00cb2 143
28c65567 144 <div [innerHTML]="html.moderationInformation"></div>
145 </div>
ccc00cb2 146
28c65567 147 <div class="block code-of-conduct" *ngIf="html.codeOfConduct">
148 <div class="anchor" id="code-of-conduct"></div>
149 <a
150 class="anchor-link"
151 routerLink="/about/instance"
152 fragment="code-of-conduct"
153 #anchorLink
154 (click)="onClickCopyLink(anchorLink)">
155 <h3 i18n class="section-title">Code of conduct</h3>
156 </a>
78f912ed 157
28c65567 158 <div [innerHTML]="html.codeOfConduct"></div>
159 </div>
78f912ed 160
28c65567 161 <div class="block terms">
162 <div class="anchor" id="terms"></div>
163 <a
164 class="anchor-link"
165 routerLink="/about/instance"
166 fragment="terms"
167 #anchorLink
168 (click)="onClickCopyLink(anchorLink)">
169 <h3 i18n class="section-title">Terms</h3>
170 </a>
be04c6fd 171
28c65567 172 <div [innerHTML]="html.terms"></div>
173 </div>
174 </div>
be04c6fd 175
28c65567 176 <div myPluginSelector pluginSelectorId="about-instance-other-information">
177 <div class="anchor" id="other-information"></div>
f3081d64 178 <a
28c65567 179 *ngIf="html.hardwareInformation"
f3081d64
K
180 class="anchor-link"
181 routerLink="/about/instance"
28c65567 182 fragment="other-information"
f3081d64
K
183 #anchorLink
184 (click)="onClickCopyLink(anchorLink)">
28c65567 185 <h2 i18n class="middle-title">
186 OTHER INFORMATION
187 </h2>
c2165d60 188 </a>
be04c6fd 189
28c65567 190 <div class="block hardware-information" *ngIf="html.hardwareInformation">
191 <div class="anchor" id="hardware-information"></div>
192 <a
193 class="anchor-link"
194 routerLink="/about/instance"
195 fragment="hardware-information"
196 #anchorLink
197 (click)="onClickCopyLink(anchorLink)">
198 <h3 i18n class="section-title">Hardware information</h3>
199 </a>
200
201 <div [innerHTML]="html.hardwareInformation"></div>
202 </div>
be04c6fd 203 </div>
78f912ed
C
204 </div>
205
28c65567 206 <div class="col-md-12 col-xl-6" myPluginSelector pluginSelectorId="about-instance-features">
c9e3565d 207 <h2 class="sr-only" i18n>FEATURES</h2>
56af5222 208 <my-instance-features-table></my-instance-features-table>
78f912ed 209 </div>
3d05209c 210
28c65567 211 <div class="col" myPluginSelector pluginSelectorId="about-instance-statistics">
45e0d669 212 <div class="anchor" id="statistics"></div>
f3081d64
K
213 <a
214 class="anchor-link"
215 routerLink="/about/instance"
216 fragment="statistics"
217 #anchorLink
218 (click)="onClickCopyLink(anchorLink)">
c2165d60 219 <h2 i18n class="middle-title">STATISTICS</h2>
220 </a>
3d05209c
JM
221 <my-instance-statistics></my-instance-statistics>
222 </div>
56af5222 223</div>
d3e56c0c 224
5c16e6bc 225<my-contact-admin-modal #contactAdminModal></my-contact-admin-modal>