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:
2025-10-11 21:24:21 +00:00
commit cb894b2159
53 changed files with 13514 additions and 0 deletions

View 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>