54 lines
2.7 KiB
PHP
54 lines
2.7 KiB
PHP
|
<!-- peertube -->
|
||
|
<div class="fediembedi fediembedi-peertube scrollable" <?php if (!empty($height)) : echo "style='height: $height;'"; endif; ?>>
|
||
|
<div role="feed">
|
||
|
<?php if($show_header): ?>
|
||
|
<div class="peertube-timeline__header">
|
||
|
<div class="actor">
|
||
|
<img class="avatar" alt="Avatar" src="<?php echo esc_url($account->host) . $account->avatar->path; ?>" loading='lazy'>
|
||
|
<div class="actor-info">
|
||
|
<div class="actor-names">
|
||
|
<a href="<?php echo $account->url; ?>" class="actor-display-link" rel="noreferrer noopener" target="_blank">
|
||
|
<div class="actor-display-name"><?php echo $account->displayName; ?></div>
|
||
|
</a>
|
||
|
<div class="actor-name"><?php echo $account->name; ?></div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<?php endif; ?>
|
||
|
<div class="videos">
|
||
|
<?php foreach ($status->data as $statut) : ?>
|
||
|
<article class="video">
|
||
|
<div class="video-inner">
|
||
|
<div class="video-miniature">
|
||
|
<a href="<?php echo esc_url($account->host) . '/videos/watch/' . $statut->uuid; ?>" title="<?php echo $statut->name; ?>" class="video-thumbnail" target="_blank" rel="noopener">
|
||
|
<img src="<?php echo esc_url($account->host) . $statut->previewPath; ?>">
|
||
|
<div class="video-thumbnail-duration-overlay"><?php echo ($statut->duration > 3600 ? gmdate("g:i:s", $statut->duration) : gmdate("i:s", $statut->duration)); ?></div>
|
||
|
<div class="play-overlay">
|
||
|
<div class="icon"></div>
|
||
|
</div>
|
||
|
</a>
|
||
|
</div>
|
||
|
<div class="video-bottom">
|
||
|
<div class="video-miniature-information">
|
||
|
<a class="video-miniature-name" title="<?php echo $statut->name; ?>" href="<?php echo esc_url($account->host) . '/videos/watch/' . $statut->uuid; ?>"><?php echo $statut->name; ?></a>
|
||
|
<div class="video-miniature-created-at-views">
|
||
|
<time datetime="<?php echo $statut->publishedAt; ?>"><?php
|
||
|
printf( _x( '%1$s ago', '%2$s = human-readable time difference', 'fediembedi' ),
|
||
|
human_time_diff(
|
||
|
wp_date("U", strtotime($statut->publishedAt))
|
||
|
)
|
||
|
);
|
||
|
?></time>
|
||
|
<span class="views"><?php printf( _x( '%1$s views', '%2$s = number of views', 'fediembedi' ), $statut->views); ?></span>
|
||
|
</div>
|
||
|
<!-- <a class="video-miniature-account" href="<?php echo esc_url($account->host) . $account->avatar->path; ?>"><?php echo $statut->account->name; ?></a> -->
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</article>
|
||
|
<?php endforeach; ?>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<?php
|