Browse Source

quick & dirty youtube thumbnails in catalog support

pull/40/head
czaks 10 years ago
parent
commit
73eb8c6b58
  1. 6
      templates/themes/catalog/catalog.html
  2. 5
      templates/themes/catalog/theme.php

6
templates/themes/catalog/catalog.html

@ -20,12 +20,16 @@
{% for post in recent_posts %}
<div class="thread">
<a href="{{post.link}}">
{% if post.youtube %}
<img src="http://img.youtube.com/vi/{{ post.youtube }}/0.jpg" class="{{post.board}}" title="{{post.bump|date('%b %d %H:%M')}}">
{% elseif post.file %}
<img src="{{post.file}}" class="{{post.board}}" title="{{post.bump|date('%b %d %H:%M')}}">
</a>
{% endif %}
<span class="replies">
<strong>{% trans %}1 reply{% plural post.reply_count %}{{ count }} replies{% endtrans %}</strong><br/>
{{ post.body }}
</span>
</a>
</div>
{% endfor %}
</ul>

5
templates/themes/catalog/theme.php

@ -41,6 +41,11 @@
$post['link'] = $config['root'] . $board['dir'] . $config['dir']['res'] . sprintf($config['file_page'], ($post['thread'] ? $post['thread'] : $post['id']));
$post['board_name'] = $board['name'];
$post['file'] = $config['uri_thumb'] . $post['thumb'];
if ($post['embed'] && preg_match('/^https?:\/\/(\w+\.)?(?:youtube\.com\/watch\?v=|youtu\.be\/)([a-zA-Z0-9\-_]{10,11})(&.+)?$/i', $post['embed'], $matches)) {
$post['youtube'] = $matches[2];
}
$recent_posts[] = $post;
}

Loading…
Cancel
Save