Sélectionner une révision Git
buttons.ejs 400 o
<%# vim: ts=4 syntax=html
The buttons for the menubar at the top of the window %>
<% buttons.forEach(function(btn){ %>
<button
id="<%= btn.id %>" type="button"
class="btn btn-<%= type %> p-2 bd-highlight"
data-toggle="tooltip" data-placement="bottom" title="<%= btn.tooltip %>"
style="-webkit-app-region: no-drag">
<i class="fas fa-<%= btn.name %>"></i>
</button>
<% })%>