Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added script to display current year instead of hard coded year #29

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions landing/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,11 @@
<div class="separator"></div>
</div>
</div>
<div class="copyright">Copyright &copy;2022 <a class="link" href="mailto:[email protected]">Richard Moore</a>. Some rights reserved.</div>

<div class="copyright">Copyright &copy;
<script>
document.write(new Date().getFullYear())
</script>
<a class="link" href="mailto:[email protected]">Richard Moore</a>. Some rights reserved.</div>
<div id="templates" style="display: none">
<a id="template-backer" data-href="https://ethereum.org" rel="noreferrer noopener" target="_blank"><div class="backer"></div><div class="title"></div></a>
<a id="template-zipper-item" href="#" rel="noreferrer noopener" target="_blank"><div class="image"></div><div class="title"></div></a>
Expand Down