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

10 lines
552 B
Text

<div style="width: 100%; background-color: #ccc; background-color: rgba(200, 200, 200, 0.3); border: 1px solid green; text-align: left; margin: 10px 0;">
<div style="float: right;">License: <%= license ? license : "Unknown" %></div>
<div style="font-size: 20px;">
<b><%= moduleName %></b><% if (author) { %> (by <%= author %>)<% } %>
</div>
<div style="font-size: 12px;">
<%= description %><% if (required) { %><br/>
<b>Required by <%= name %>.</b><% } %>
</div>
</div>