2017-08-23 21:21:15 +02:00
|
|
|
<div class="wrapper">
|
|
|
|
{{> topBar}}
|
|
|
|
<div>
|
|
|
|
<h3>{{this.channelName}}</h3>
|
|
|
|
<p>Below are all the free claims in this channel.</p>
|
|
|
|
{{#each channelContents}}
|
2017-09-11 18:25:05 +02:00
|
|
|
<script>console.log(this)</script>
|
2017-08-23 21:21:15 +02:00
|
|
|
<div class="all-claims-item">
|
2017-08-24 23:43:02 +02:00
|
|
|
<a href="/{{this.channelName}}:{{this.shortChannelId}}/{{this.name}}.{{this.fileExtension}}">
|
|
|
|
{{#ifConditional this.contentType '===' 'video/mp4'}}
|
2017-09-11 18:25:05 +02:00
|
|
|
<img class="all-claims-asset" src="{{this.thumbnail}}"/>
|
2017-08-24 23:43:02 +02:00
|
|
|
{{else}}
|
|
|
|
<img class="all-claims-asset" src="/{{this.claimId}}/{{this.name}}.{{this.fileExtension}}" />
|
|
|
|
{{/ifConditional}}
|
|
|
|
</a>
|
2017-08-23 21:21:15 +02:00
|
|
|
<div class="all-claims-details">
|
|
|
|
<ul style="list-style-type:none">
|
2017-08-24 23:43:02 +02:00
|
|
|
<li><strong>{{this.title}}</strong></li>
|
|
|
|
<li><i> {{this.description}}</i></li>
|
|
|
|
<li><a href="/{{this.channelName}}:{{this.shortChannelId}}/{{this.name}}.{{this.fileExtension}}">spee.ch/{{this.channelName}}:{{this.shortChannelId}}/{{this.name}}.{{this.fileExtension}}</a></li>
|
2017-08-23 21:21:15 +02:00
|
|
|
<li>License: {{this.license}}</li>
|
2017-09-02 03:54:27 +02:00
|
|
|
<li>
|
|
|
|
Claim:
|
|
|
|
<a href="lbry://{{this.name}}">lbry://{{this.name}}</a>
|
|
|
|
</li>
|
2017-08-23 21:21:15 +02:00
|
|
|
<li>Claim Id: {{this.claimId}}</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{/each}}
|
|
|
|
</div>
|
|
|
|
{{> footer}}
|
2017-09-02 03:54:27 +02:00
|
|
|
</div>
|