diff options
| author | A Farzat <a@farzat.xyz> | 2025-10-16 06:34:27 +0300 | 
|---|---|---|
| committer | A Farzat <a@farzat.xyz> | 2025-10-16 06:34:27 +0300 | 
| commit | fdbe5d8d045801446c16c698096b9462f704d0d1 (patch) | |
| tree | 5799d936e1602b65df8fdb7460a4f34caaf11884 | |
| parent | c1a31e9ef1da00b79a26be15d9fe1fdcf7d19602 (diff) | |
| download | farzat.xyz-fdbe5d8d045801446c16c698096b9462f704d0d1.tar.gz farzat.xyz-fdbe5d8d045801446c16c698096b9462f704d0d1.zip  | |
Overwrite favicon partial template
| -rw-r--r-- | templates/partials/favicon.html | 25 | 
1 files changed, 25 insertions, 0 deletions
diff --git a/templates/partials/favicon.html b/templates/partials/favicon.html new file mode 100644 index 0000000..d02a0c2 --- /dev/null +++ b/templates/partials/favicon.html @@ -0,0 +1,25 @@ +<link +	rel="icon" +	type="image/png" +	href="{{ config.base_url }}/favicon/favicon-96x96.png" +	sizes="96x96" +/> +<link +	rel="icon" +	type="image/svg+xml" +	href="{{ config.base_url }}/favicon/favicon.svg" +/> +<link +	rel="shortcut icon" +	href="{{ config.base_url }}/favicon/favicon.ico" +/> +<link +	rel="apple-touch-icon" +	sizes="180x180" +	href="{{ config.base_url }}/favicon/apple-touch-icon.png" +/> +<meta name="apple-mobile-web-app-title" content="{{ config.title }}" /> +<link +	rel="manifest" +	href="{{ config.base_url }}/favicon/site.webmanifest" +/>  | 
