zulip/static/templates/playground_links_popover_co...

14 lines
389 B
Handlebars

{{! Contents of "view code in playground" popover for code blocks}}
<ul class="nav nav-list">
{{#each playground_info}}
<li>
<a href="{{this/playground_url}}" target="_blank" rel="noopener noreferrer" class="popover_playground_link">
{{#tr}}
View in {name}
{{/tr}}
</a>
</li>
{{/each}}
</ul>