css
.topic-thumbnail {
background-position: center center;
background-size: cover;
border-radius: 3px;
float: left;
height: 90px;
width: 130px;
margin-right: 2em;
}
.topic-list .posts,.topic-list .views,.topic-list .activity {
display: none
}
.upload-selector {
label,
input[type="radio"],
.radios:nth-of-type(2) {
display: none;
}
}```
head
```<script type='text/x-handlebars' data-template-name='list/topic-list-item.raw'>
<td class='main-link clearfix'>
{{raw "topic-status" topic=topic}}
{{#if topic.image_url}}
<a href="{{topic.url}}" class=topic-thumbnail style="background-image: url({{topic.image_url}});"></a>
{{topic-link topic}}
{{else}}
{{topic-link topic}}
{{/if}}
</td>
</script>```