12 lines
241 B
Plaintext
12 lines
241 B
Plaintext
|
<% if (title) { %>
|
||
|
<h1 class="h2 mb-3"><%- title %></h1>
|
||
|
<% }
|
||
|
|
||
|
if (subtitle) { %>
|
||
|
<p class="h4 text-muted font-weight-normal mb-7"><%- subtitle %></p>
|
||
|
<% }
|
||
|
|
||
|
if (link) { %>
|
||
|
<a class="btn btn-teal" href="#"><%- link %></a>
|
||
|
<% } %>
|