Current year for copyright + gitignore

This commit is contained in:
Nicolò P. 2024-11-19 08:59:51 +01:00
parent 6ca602e04d
commit ad1aafa243
2 changed files with 9 additions and 2 deletions

1
.gitignore vendored
View File

@ -10,3 +10,4 @@ docs/
progetto_QGIS/ progetto_QGIS/
conf.json conf.json
shapefile shapefile
config.js

View File

@ -62,7 +62,9 @@
particolarmente utile per applicazioni <abbr title="Geography Information Systems">GIS</abbr>. particolarmente utile per applicazioni <abbr title="Geography Information Systems">GIS</abbr>.
</p> </p>
<div class="card mt-6"> <div class="card mt-6">
<a href="webgis/">
<img class="image" src="img/webgis.webp" /> <img class="image" src="img/webgis.webp" />
</a>
<div class="card-content has-text-centered"> <div class="card-content has-text-centered">
<a href="webgis/" class="button is-link is-large has-text-white">Accedi al WebGIS</a> <a href="webgis/" class="button is-link is-large has-text-white">Accedi al WebGIS</a>
</div> </div>
@ -91,7 +93,11 @@
</div> </div>
</div> </div>
<footer class="footer has-text-centered"> <footer class="footer has-text-centered">
<p>&copy; Copyright Progetto Carta Archeologica 2024</p> <p>Copyright &copy; <span id="c-year"></span> Progetto Carta Archeologica di Capri</p>
</footer> </footer>
<script type="text/javascript" defer>
const year = new Date().getFullYear();
document.getElementById('c-year').innerText = year;
</script>
</body> </body>
</html> </html>