16 lines
769 B
C#
16 lines
769 B
C#
@{
|
||
var companyName = "companyName";
|
||
var companyWeb = "companyWeb";
|
||
var year = DateTime.Now.Year;
|
||
}
|
||
<footer class="main-footer">
|
||
<div class="float-right d-none d-sm-block">
|
||
<!--/*** This app is free as long as you keep the footer author’s credit link/attribution link/backlink. If you'd like to use the app without the footer author’s credit link/attribution link/backlink, you can purchase the Credit Removal License from "https://store.indotalent.com". Thank you for your support. ***/-->
|
||
<b>Developed By:</b> <a href="https://store.indotalent.com">https://store.indotalent.com</a>
|
||
</div>
|
||
<small id="footerContent">
|
||
© @year <a href="@companyWeb">@companyName</a>, All Right Reserved.
|
||
</small>
|
||
</footer>
|
||
|