- Docker deployment ready
- Content aggregation and filtering
- User authentication
- Polling service for updates
🤖 Generated with Claude Code
23 lines
841 B
HTML
23 lines
841 B
HTML
<!-- 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>
|