1
0
Fork 0
forked from svrjs/svrjs
This repository has been archived on 2024-11-10. You can view files and clone it, but cannot push or open issues or pull requests.
svrjs/templates/licenseElement.ejs

11 lines
423 B
Text
Raw Normal View History

<div class="license-card">
<div class="license-type">License: <%= license ? license : "Unknown" %></div>
<div class="license-name">
<b><%= moduleName %></b><% if (author) { %> (by <%= author %>)<% } %>
</div>
<div class="license-description">
<%= description %><% if (required) { %><br/>
<b>Required by <%= name %>.</b><% } %>
</div>
</div>