BalanceBoard - Clean release
- Docker deployment ready
- Content aggregation and filtering
- User authentication
- Polling service for updates
🤖 Generated with Claude Code
This commit is contained in:
22
themes/vanilla-js/list-template.html
Normal file
22
themes/vanilla-js/list-template.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<!-- List Template - Compact list view -->
|
||||
<template id="post-list-template">
|
||||
<div class="post-list-item" data-post-id="{{id}}" data-platform="{{platform}}">
|
||||
<div class="post-vote">
|
||||
<span class="vote-score">{{score}}</span>
|
||||
</div>
|
||||
|
||||
<div class="post-main">
|
||||
<h3 class="post-title">
|
||||
<a href="{{post_url}}" target="_blank" rel="noopener">{{title}}</a>
|
||||
</h3>
|
||||
|
||||
<div class="post-metadata">
|
||||
<span class="platform-badge platform-{{platform}}">{{platform}}</span>
|
||||
{% if source %}<span class="post-source">{{source}}</span>{% endif %}
|
||||
<span class="post-author">u/{{author}}</span>
|
||||
<time class="post-time" datetime="{{timestamp}}">{{formatTimeAgo(timestamp)}}</time>
|
||||
<span class="post-replies">{{replies}} comments</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
Reference in New Issue
Block a user