Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Sven Schneider
urbanVIS
Commits
eeefed6c
Commit
eeefed6c
authored
May 25, 2021
by
Sven Schneider
Browse files
added dynamic year in copyright info on all html websites
parent
8424bf68
Pipeline
#3809
passed with stages
in 44 seconds
Changes
14
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
public/Kirchturm1.html
View file @
eeefed6c
...
...
@@ -55,10 +55,15 @@
<footer>
<p
align=
"center"
>
<h5>
Copyright
©
2018 -
2020
, HFT-Stuttgart. All rights reserved
</h5>
<h5>
Copyright
©
2018 -
<span
id=
'year'
></span>
, HFT-Stuttgart. All rights reserved
</h5>
</p>
</footer>
<script>
var
year
=
new
Date
().
getFullYear
();
document
.
getElementById
(
'
year
'
).
innerHTML
=
year
;
</script>
</body>
...
...
public/Kirchturm2.html
View file @
eeefed6c
...
...
@@ -55,10 +55,15 @@
<footer>
<p
align=
"center"
>
<h5>
Copyright
©
2018 -
2020
, HFT-Stuttgart. All rights reserved
</h5>
<h5>
Copyright
©
2018 -
<span
id=
'year'
></span>
, HFT-Stuttgart. All rights reserved
</h5>
</p>
</footer>
<script>
var
year
=
new
Date
().
getFullYear
();
document
.
getElementById
(
'
year
'
).
innerHTML
=
year
;
</script>
</body>
...
...
public/StreamlineParticles.html
View file @
eeefed6c
...
...
@@ -61,12 +61,16 @@
<footer>
<p
align=
"center"
>
<h5>
Copyright
©
2018 -
2020
, HFT-Stuttgart. All rights reserved
</h5>
<p
align=
"center"
>
<h5>
Copyright
©
2018 -
<span
id=
'year'
></span>
, HFT-Stuttgart. All rights reserved
</h5>
</p>
</footer>
<script>
var
year
=
new
Date
().
getFullYear
();
document
.
getElementById
(
'
year
'
).
innerHTML
=
year
;
</script>
</body>
...
...
public/StreamlinesMultipart.html
View file @
eeefed6c
...
...
@@ -61,12 +61,16 @@
<footer>
<p
align=
"center"
>
<h5>
Copyright
©
2018 -
2020
, HFT-Stuttgart. All rights reserved
</h5>
<p
align=
"center"
>
<h5>
Copyright
©
2018 -
<span
id=
'year'
></span>
, HFT-Stuttgart. All rights reserved
</h5>
</p>
</footer>
<script>
var
year
=
new
Date
().
getFullYear
();
document
.
getElementById
(
'
year
'
).
innerHTML
=
year
;
</script>
</body>
...
...
public/Welcome2Simstadt.html
View file @
eeefed6c
...
...
@@ -48,10 +48,15 @@
<footer>
<p
align=
"center"
>
<h5>
Copyright
©
2018 -
2020
, HFT-Stuttgart. All rights reserved
</h5>
<h5>
Copyright
©
2018 -
<span
id=
'year'
></span>
, HFT-Stuttgart. All rights reserved
</h5>
</p>
</footer>
<script>
var
year
=
new
Date
().
getFullYear
();
document
.
getElementById
(
'
year
'
).
innerHTML
=
year
;
</script>
</body>
</body>
...
...
public/Welcome2iCity.html
View file @
eeefed6c
...
...
@@ -48,10 +48,15 @@
<link
rel=
"stylesheet"
href=
"css/myCesiumStyle.css"
>
<footer>
<p
align=
"center"
>
<h5>
Copyright
©
2018 -
2020
, HFT-Stuttgart. All rights reserved
</h5>
<h5>
Copyright
©
2018 -
<span
id=
'year'
></span>
, HFT-Stuttgart. All rights reserved
</h5>
</p>
</footer>
<script>
var
year
=
new
Date
().
getFullYear
();
document
.
getElementById
(
'
year
'
).
innerHTML
=
year
;
</script>
</body>
</body>
...
...
public/circularData.html
View file @
eeefed6c
...
...
@@ -55,10 +55,15 @@
<footer>
<p
align=
"center"
>
<h5>
Copyright
©
2018 -
2020
, HFT-Stuttgart. All rights reserved
</h5>
<h5>
Copyright
©
2018 -
<span
id=
'year'
></span>
, HFT-Stuttgart. All rights reserved
</h5>
</p>
</footer>
<script>
var
year
=
new
Date
().
getFullYear
();
document
.
getElementById
(
'
year
'
).
innerHTML
=
year
;
</script>
</body>
...
...
public/iStoeck.html
View file @
eeefed6c
...
...
@@ -52,10 +52,15 @@
<footer>
<p
align=
"center"
>
<h5>
Copyright
©
2018 -
2020
, HFT-Stuttgart. All rights reserved
</h5>
<h5>
Copyright
©
2018 -
<span
id=
'year'
></span>
, HFT-Stuttgart. All rights reserved
</h5>
</p>
</footer>
<script>
var
year
=
new
Date
().
getFullYear
();
document
.
getElementById
(
'
year
'
).
innerHTML
=
year
;
</script>
</body>
...
...
public/iStoeckHM.html
View file @
eeefed6c
...
...
@@ -56,10 +56,15 @@
<footer>
<p
align=
"center"
>
<h5>
Copyright
©
2018 -
2020
, HFT-Stuttgart. All rights reserved
</h5>
<h5>
Copyright
©
2018 -
<span
id=
'year'
></span>
, HFT-Stuttgart. All rights reserved
</h5>
</p>
</footer>
<script>
var
year
=
new
Date
().
getFullYear
();
document
.
getElementById
(
'
year
'
).
innerHTML
=
year
;
</script>
</body>
...
...
public/iStoeckHMGeoJSON.html
View file @
eeefed6c
...
...
@@ -56,10 +56,15 @@
<footer>
<p
align=
"center"
>
<h5>
Copyright
©
2018 -
2020
, HFT-Stuttgart. All rights reserved
</h5>
<h5>
Copyright
©
2018 -
<span
id=
'year'
></span>
, HFT-Stuttgart. All rights reserved
</h5>
</p>
</footer>
<script>
var
year
=
new
Date
().
getFullYear
();
document
.
getElementById
(
'
year
'
).
innerHTML
=
year
;
</script>
</body>
...
...
public/iStoeckHexgrid_2m.html
View file @
eeefed6c
...
...
@@ -57,10 +57,15 @@
<footer>
<p
align=
"center"
>
<h5>
Copyright
©
2018 -
2020
, HFT-Stuttgart. All rights reserved
</h5>
<h5>
Copyright
©
2018 -
<span
id=
'year'
></span>
, HFT-Stuttgart. All rights reserved
</h5>
</p>
</footer>
<script>
var
year
=
new
Date
().
getFullYear
();
document
.
getElementById
(
'
year
'
).
innerHTML
=
year
;
</script>
</body>
</html>
\ No newline at end of file
public/iStoeckStreams.html
View file @
eeefed6c
...
...
@@ -50,11 +50,16 @@
</div>
</div>
<footer>
<p
align=
"center"
>
<h5>
Copyright
©
2018 - 2020, HFT-Stuttgart. All rights reserved
</h5>
</p>
</footer>
<footer>
<p
align=
"center"
>
<h5>
Copyright
©
2018 -
<span
id=
'year'
></span>
, HFT-Stuttgart. All rights reserved
</h5>
</p>
</footer>
<script>
var
year
=
new
Date
().
getFullYear
();
document
.
getElementById
(
'
year
'
).
innerHTML
=
year
;
</script>
</body>
...
...
public/index.html
View file @
eeefed6c
...
...
@@ -406,11 +406,15 @@
<p
class=
"float-right"
>
<a
href=
"#"
>
Back to top
</a>
</p>
<p>
urbanVIS is
©
by Sven Schneider and colaborators at HFT Stuttgart,
2020
.
</p>
<p>
urbanVIS is
©
by Sven Schneider and colaborators at HFT Stuttgart,
<span
id=
'year'
></span>
.
</p>
</div>
</footer>
<script>
var
year
=
new
Date
().
getFullYear
();
document
.
getElementById
(
'
year
'
).
innerHTML
=
year
;
</script>
<!-- KEINE ÄNDERUNGEN NACH DIESER ZEILE -->
<script
src=
"settings.js"
>
</script>
...
...
public/welcome.html
View file @
eeefed6c
...
...
@@ -273,14 +273,19 @@
</main>
<footer
class=
"text-
mu
te
d
"
>
<footer
class=
"text-
whi
te"
>
<div
class=
"container"
>
<p
class=
"float-right"
>
<a
href=
"#"
>
Back to top
</a>
</p>
<p>
U
rban
CFD
is
©
by Sven Schneider and colaborators at HFT Stuttgart,
2020
.
</p>
<p>
u
rban
VIS
is
©
by Sven Schneider and colaborators at HFT Stuttgart,
<span
id=
'year'
></span>
.
</p>
</div>
</footer>
<script>
var
year
=
new
Date
().
getFullYear
();
document
.
getElementById
(
'
year
'
).
innerHTML
=
year
;
</script>
</body>
</html>
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment