Skip to content
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: 7 additions & 0 deletions index.html → index_updated_currentyear.html
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,9 @@ <h3>Companies &amp; Universities developing DeepChem</h3>
<li><a href="https://deepchem.readthedocs.io/en/latest/">Docs</a></li>
<li><a href="https://github.com/deepchem/deepchem">GitHub</a></li>
</ul>
<div class="copyright">
&copy; DeepChem <span id="currentYear"></span>
</div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
Expand Down Expand Up @@ -165,6 +168,10 @@ <h3>Companies &amp; Universities developing DeepChem</h3>
'nightly,docker,no': 'docker pull deepchemio/deepchem:latest<br/>docker run -it deepchemio/deepchem:latest',
'nightly,docker,yes': 'docker pull deepchemio/deepchem:latest<br/>docker run --gpus all deepchemio/deepchem:latest',
}));

// Update the year dynamically
document.getElementById('currentYear').textContent = new Date().getFullYear();

// Code for google analytics
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
Expand Down