main.ejs 253 B

1234567891011
  1. <% if (title) { %>
  2. <h1 class="h2 mb-3"><%- title %></h1>
  3. <% }
  4. if (subtitle) { %>
  5. <p class="h4 text-muted font-weight-normal mb-7"><%- subtitle %></p>
  6. <% }
  7. if (link) { %>
  8. <a class="btn btn-<%- btn_color %>" href="#"><%- link %></a>
  9. <% } %>