~ajhalili2006's personal website, built with Zensical (successor of Material for Mkdocs) [old repo name got bugged while attempting to do manual knot migration via repo deletion] andreijiroh.dev
zensical mkdocs-material website

feat(overrides): add archive.org/.md links at footer

Also mandatory SPDX-License-Identifier headers for legal

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@gmail.com>

Changed files
+31
overrides
+2
overrides/404.html
···
{#-
This file is copied from https://github.com/squidfunk/mkdocs-material/blob/81c15d5eced1b34e3636acb27d4cf16dad5c26e7/material/404.html
alongside with customizations for live site development.
-#}
···
{#-
+
SPDX-License-Identifier: MIT
+
This file is copied from https://github.com/squidfunk/mkdocs-material/blob/81c15d5eced1b34e3636acb27d4cf16dad5c26e7/material/404.html
alongside with customizations for live site development.
-#}
+6
overrides/main.html
···
{% extends "base.html" %}
{% block extrahead %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/mkdocs-material-styling.css' | url }}">
···
+
{#-
+
+
SPDX-License-Identifier: MIT
+
+
-#}
+
{% extends "base.html" %}
{% block extrahead %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/mkdocs-material-styling.css' | url }}">
+23
overrides/partials/copyright.html
···
···
+
{#-
+
SPDX-License-Identifier: MIT
+
+
Generally copied from upstream sources: https://github.com/squidfunk/mkdocs-material/blob/79515879d159ee807db61687c7d83aa63a8e9905/material/templates/partials/copyright.html
+
-#}
+
<div class="md-copyright">
+
{% if config.copyright %}
+
<div class="md-copyright__highlight">
+
{{ config.copyright }}
+
</div>
+
{% endif %}
+
{% if not config.extra.generator == false %}
+
Made with
+
<a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
+
Material for MkDocs
+
</a>
+
{% endif %}
+
<br>
+
Archived versions of this page might be available at
+
<a href="https://web.archive.org/*/{{ page.canonical_url|url }}">Internet Archive</a>
+
or at <a href="https://archive.md/{{ page.canonical_url|url }}">archive.today</a>,
+
updated manually after an successful build.
+
</div>