dashboard-core/theme/dbd-soft-ui/views/partials/footer.ejs

20 lines
812 B
Text
Raw Normal View History

2023-06-19 14:21:58 +05:00
<footer class="footer">
2023-06-22 19:36:52 +05:00
<div class="container-fluid">
<div class="row align-items-center justify-content-lg-between">
<div class="col-lg-6 mb-lg-0 mb-4">
<div class="copyright text-center text-sm text-muted text-lg-start">
© <%= new Date().getFullYear() %>
<% if(themeConfig?.footer?.replaceDefault === true) { %>
<a href="/credits" class="font-weight-bold"
target="_blank">Assistants</a><% if(themeConfig?.footer?.text?.length) { %> |
<%= themeConfig?.footer?.text %> <% } %>
<% } else { %>
Made with <i class="fa fa-heart"></i> by <a href="/credits" class="font-weight-bold"
target="_blank">PlainDevelopment</a> and <a href="/credits" class="font-weight-bold"
target="_blank">Jonny_Bro</a>
<% } %>
</div>
</div>
</div>
</div>
2023-06-19 14:21:58 +05:00
</footer>