diff options
-rw-r--r-- | public/app.css | 20 | ||||
-rw-r--r-- | public/index.html | 19 |
2 files changed, 39 insertions, 0 deletions
diff --git a/public/app.css b/public/app.css index 10709d7..1f9ae99 100644 --- a/public/app.css +++ b/public/app.css @@ -20,3 +20,23 @@ a { a:hover { color: #ffd382; } + +footer { + display: flex; + font-size: small; + margin-top: 1rem; + padding-top: 0.5rem; + border-top: 1px dashed; +} + +footer a { + text-decoration: none; +} + +footer img { + vertical-align: top; +} + +#copyright-text { + padding-left: 0.5rem; +} diff --git a/public/index.html b/public/index.html index 770c0c0..3fe7200 100644 --- a/public/index.html +++ b/public/index.html @@ -13,5 +13,24 @@ <a href="https://www.cinemateket.no/ravenheart">Cinemateket sine sider</a> for å være helt sikker.</p> <div id="program"></div> + + <footer> + <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"> + <img alt="Creative Commons-lisens" style="border-width:0" + src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png"> + </a> + <span id="copyright-text"> + <span xmlns:dct="http://purl.org/dc/terms/" property="dct:title"> + Ravenheart uoffisielt program + </span> + av + <a xmlns:cc="http://creativecommons.org/ns#" href="https://code.volse.no/ramaskrik-social.git/" + property="cc:attributionName" rel="cc:attributionURL">Harald Eilertsen</a> + er lisensiert under en + <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"> + Creative Commons Navngivelse-DelPåSammeVilkår 4.0 Internasjonal Lisens + </a>. + </span> + </footer> </body> </html> |