diff options
author | Alan Pearce | 2024-04-25 02:10:13 +0200 |
---|---|---|
committer | Alan Pearce | 2024-04-25 02:10:13 +0200 |
commit | f87882e8d138d570c73c85a08821c64882ca658d (patch) | |
tree | 13d2c4a20256d770fc08f683e45b151fc0bd784d | |
parent | b27825139e77cd8c527ada7c712f186c94444c04 (diff) | |
download | website-f87882e8d138d570c73c85a08821c64882ca658d.tar.lz website-f87882e8d138d570c73c85a08821c64882ca658d.tar.zst website-f87882e8d138d570c73c85a08821c64882ca658d.zip |
Add link to site {source, license} to footer
-rw-r--r-- | templates/404.html | 5 | ||||
-rw-r--r-- | templates/homepage.html | 5 | ||||
-rw-r--r-- | templates/list.html | 5 | ||||
-rw-r--r-- | templates/post.html | 5 | ||||
-rw-r--r-- | templates/tags.html | 5 |
5 files changed, 15 insertions, 10 deletions
diff --git a/templates/404.html b/templates/404.html index 1d544f8..eade0f9 100644 --- a/templates/404.html +++ b/templates/404.html @@ -28,10 +28,11 @@ <h2>ʕノ•ᴥ•ʔノ ︵ ┻━┻</h2> </main> <footer> - Licensed under + Content is <a rel="license" href="http://creativecommons.org/licenses/by/4.0/" >CC BY 4.0</a - > + >. <a href="https://git.alanpearce.eu/website/">Site source code</a> is + <a href="https://opensource.org/licenses/MIT">MIT</a> </footer> </body> </html> diff --git a/templates/homepage.html b/templates/homepage.html index a1f21e7..d256e8c 100644 --- a/templates/homepage.html +++ b/templates/homepage.html @@ -54,10 +54,11 @@ </section> </main> <footer> - Licensed under + Content is <a rel="license" href="http://creativecommons.org/licenses/by/4.0/" >CC BY 4.0</a - > + >. <a href="https://git.alanpearce.eu/website/">Site source code</a> is + <a href="https://opensource.org/licenses/MIT">MIT</a> </footer> </body> </html> diff --git a/templates/list.html b/templates/list.html index 58b6b50..74d6576 100644 --- a/templates/list.html +++ b/templates/list.html @@ -43,10 +43,11 @@ </ul> </main> <footer> - Licensed under + Content is <a rel="license" href="http://creativecommons.org/licenses/by/4.0/" >CC BY 4.0</a - > + >. <a href="https://git.alanpearce.eu/website/">Site source code</a> is + <a href="https://opensource.org/licenses/MIT">MIT</a> </footer> </body> </html> diff --git a/templates/post.html b/templates/post.html index 5efd45f..7574a1f 100644 --- a/templates/post.html +++ b/templates/post.html @@ -69,10 +69,11 @@ foo=bar </article> </main> <footer> - Licensed under + Content is <a rel="license" href="http://creativecommons.org/licenses/by/4.0/" >CC BY 4.0</a - > + >. <a href="https://git.alanpearce.eu/website/">Site source code</a> is + <a href="https://opensource.org/licenses/MIT">MIT</a> </footer> </body> </html> diff --git a/templates/tags.html b/templates/tags.html index b9e21a6..79c1c09 100644 --- a/templates/tags.html +++ b/templates/tags.html @@ -33,10 +33,11 @@ </ul> </main> <footer> - Licensed under + Content is <a rel="license" href="http://creativecommons.org/licenses/by/4.0/" >CC BY 4.0</a - > + >. <a href="https://git.alanpearce.eu/website/">Site source code</a> is + <a href="https://opensource.org/licenses/MIT">MIT</a> </footer> </body> </html> |