Skip to content

Commit 2e1f0a9

Browse files
fix: copyright year on the footer
Signed-off-by: Kartik Labhshetwar <kartik.labhshetwar@gmail.com>
1 parent 209ade5 commit 2e1f0a9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -789,7 +789,7 @@ <h2 class="mb-30">Sign-up for the newsletter!</h2>
789789
<div class="col-lg-5 col-sm-6">
790790
<aside class="f_widget ab_widget">
791791
<div class="f_title">
792-
<h3 style="margin-left: -10px;">Copyright © 2023 Keploy Inc.</h3>
792+
<h3 style="margin-left: -10px;">Copyright © <span id="current-year"></span> Keploy Inc.</h3>
793793
</div>
794794
<p style="font-family:'Inconsolata', monospace;">Developers experience for e2e testing. Toolkit that creates test-cases and data mocks from API calls, DB queries, etc.</p>
795795
</aside>
@@ -895,6 +895,7 @@ <h3>Find us on</h3>
895895
// event.preventDefault();
896896
// }
897897
// });
898+
document.getElementById('current-year').textContent = new Date().getFullYear();
898899
</script>
899900
</div>
900901
</body>

0 commit comments

Comments
 (0)