ng-implementation/my-workspace/projects/sae-lib/chatbot/bot-talks/bot-talks.html
2025-08-08 10:57:00 +02:00

20 lines
340 B
HTML

<div class="bot-talks-container">
<!-- avatar-->
<div class="bubble">
{{message}}
<br>
@for (link of links; track link.title) {
<span class="link-title">
{{link.title}}
</span>
<span class="taget">
<a href="{{link.url}}">
{{link.label}}
<!-- copy button-->
</a>
</span>
}
</div>
</div>