We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e231087 + 2500f91 commit c35f822Copy full SHA for c35f822
index.html
@@ -237,7 +237,7 @@ <h2>Get in Touch</h2>
237
<div class="row">
238
<div class="col-sm-5 copyright">
239
<p>
240
- Copyright © 2020 YOUR NAME
+ Copyright © <span id="current-year">2022</span> YOUR NAME
241
</p>
242
</div>
243
<div class="col-sm-2 top">
js/scripts.js
@@ -12,6 +12,9 @@
12
13
(function($) {
14
15
+ // Show current year
16
+ $("#current-year").text(new Date().getFullYear());
17
+
18
// Remove no-js class
19
$('html').removeClass('no-js');
20
0 commit comments