Current year for copyright + gitignore
This commit is contained in:
parent
6ca602e04d
commit
ad1aafa243
1
.gitignore
vendored
1
.gitignore
vendored
@ -10,3 +10,4 @@ docs/
|
|||||||
progetto_QGIS/
|
progetto_QGIS/
|
||||||
conf.json
|
conf.json
|
||||||
shapefile
|
shapefile
|
||||||
|
config.js
|
||||||
|
10
index.html
10
index.html
@ -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">
|
||||||
<img class="image" src="img/webgis.webp" />
|
<a href="webgis/">
|
||||||
|
<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>© Copyright Progetto Carta Archeologica 2024</p>
|
<p>Copyright © <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>
|
||||||
|
Loading…
Reference in New Issue
Block a user