Bilibili-Evolved/utils/about/about.html
2019-05-20 15:38:27 +08:00

42 lines
1.9 KiB
HTML

<div class="bilibili-evolved-about">
<div class="about-header">
<i class="mdi mdi-information-outline mdi-24px"></i>
<span class="about-title">关于</span>
</div>
<div class="about-content">
<p class="name">
<img v-bind:src="'https://github.com/the1812/Bilibili-Evolved/raw/' + branch + '/images/logo.png'"
width="50">
Bilibili Evolved
</p>
<p class="version">v{{version}} · {{clientType}}</p>
<section class="authors">
<span class="title">Authors</span>
<a class="author" target="_blank" v-for="author of authors" v-bind:href="author.link">{{author.name}}</a>
</section>
<section class="contributors">
<span class="title">Contributors</span>
<a class="contributor" target="_blank" v-for="contributor of contributors"
v-bind:href="contributor.link">{{contributor.name}}</a>
</section>
<section class="participants">
<span class="title">Participants</span>
<a class="participant" target="_blank" v-for="participant of participants"
v-bind:href="participant.link">{{participant.name}}</a>
</section>
<section class="supporters">
<span class="title">Supporters</span>
<span class="supporter" v-for="supporter of supporters">{{supporter}}</span>
</section>
<section class="websites">
<span class="title">Websites</span>
<a class="website" target="_blank" v-for="website of websites"
v-bind:href="website.link">{{website.name}}</a>
</section>
<section class="components">
<span class="title">Components</span>
<a class="component" target="_blank" v-for="component of components"
v-bind:href="component.link">{{component.name}}</a>
</section>
</div>
</div>