From: Memet Zx <[email protected]>
To: GNU/Weeb Mailing List <[email protected]>
Cc: Ammar Faizi <[email protected]>,
Irvan Malik <[email protected]>,
Memet Zx <[email protected]>
Subject: [PATCH website v1 0/7] add meta tag and favicon
Date: Sat, 22 Oct 2022 14:23:27 +0700 [thread overview]
Message-ID: <[email protected]> (raw)
From: Memet Zx <[email protected]>
Hi,
This series contains some additions and fixes, There are 7 patch
in this series:
# Patch 1
remove author data and template: because at the time it was a wrong concept
and I forgot if this is not used,
maybe in the future it will be fixed again.
# Patch 2
when using JSON, the file is not detected and
can't rendered to the public directory
so i reformatted using nunjucks and put the permalink into manifest.json
# Patch 3
add favicon images
the favicon images generated by
https://www.favicon-generator.org/
# Patch 4
add meta tag: The function of a meta element is to convey additional information to a website,
which facilitates the analysis of HTML files and makes maintaining file contents easier.
HTML meta tags almost always follow the same structure;
# Patch 5
add config for favicon:
add favicon pass trough copy when rendering
# Patch 6
refactoring head:
add manifest, favicon images and include meta tags file
# Patch 7
Modify data site
....
Memet Zx (7):
remove author data and template
rename file manifest to nunjucks format
add favicon images
add meta tag list file
add config for favicon
refactoring head
add images on data site
.eleventy.js | 3 +-
.../_assets/favicon/android-icon-144x144.png | Bin 0 -> 52749 bytes
.../_assets/favicon/android-icon-192x192.png | Bin 0 -> 98357 bytes
.../_assets/favicon/android-icon-36x36.png | Bin 0 -> 4022 bytes
.../_assets/favicon/android-icon-48x48.png | Bin 0 -> 6660 bytes
.../_assets/favicon/android-icon-72x72.png | Bin 0 -> 13938 bytes
.../_assets/favicon/android-icon-96x96.png | Bin 0 -> 24180 bytes
.../_assets/favicon/apple-icon-114x114.png | Bin 0 -> 33722 bytes
.../_assets/favicon/apple-icon-120x120.png | Bin 0 -> 37191 bytes
.../_assets/favicon/apple-icon-144x144.png | Bin 0 -> 52749 bytes
.../_assets/favicon/apple-icon-152x152.png | Bin 0 -> 58619 bytes
.../_assets/favicon/apple-icon-180x180.png | Bin 0 -> 81110 bytes
_source/_assets/favicon/apple-icon-57x57.png | Bin 0 -> 9033 bytes
_source/_assets/favicon/apple-icon-60x60.png | Bin 0 -> 9888 bytes
_source/_assets/favicon/apple-icon-72x72.png | Bin 0 -> 13938 bytes
_source/_assets/favicon/apple-icon-76x76.png | Bin 0 -> 15452 bytes
.../favicon/apple-icon-precomposed.png | Bin 0 -> 98879 bytes
_source/_assets/favicon/apple-icon.png | Bin 0 -> 98879 bytes
_source/_assets/favicon/favicon-16x16.png | Bin 0 -> 1343 bytes
_source/_assets/favicon/favicon-32x32.png | Bin 0 -> 3330 bytes
_source/_assets/favicon/favicon-96x96.png | Bin 0 -> 24180 bytes
_source/_assets/favicon/favicon.ico | Bin 0 -> 1150 bytes
_source/_assets/favicon/ms-icon-144x144.png | Bin 0 -> 52749 bytes
_source/_assets/favicon/ms-icon-150x150.png | Bin 0 -> 57107 bytes
_source/_assets/favicon/ms-icon-310x310.png | Bin 0 -> 203713 bytes
_source/_assets/favicon/ms-icon-70x70.png | Bin 0 -> 13201 bytes
_source/_data/author.json | 10 ----
_source/_data/site.json | 1 +
_source/_includes/head.html | 27 +++++++--
_source/_includes/meta.html | 33 +++++++++++
_source/author.njk | 10 ----
_source/manifest.json | 0
_source/manifest.njk | 54 ++++++++++++++++++
33 files changed, 110 insertions(+), 28 deletions(-)
create mode 100644 _source/_assets/favicon/android-icon-144x144.png
create mode 100644 _source/_assets/favicon/android-icon-192x192.png
create mode 100644 _source/_assets/favicon/android-icon-36x36.png
create mode 100644 _source/_assets/favicon/android-icon-48x48.png
create mode 100644 _source/_assets/favicon/android-icon-72x72.png
create mode 100644 _source/_assets/favicon/android-icon-96x96.png
create mode 100644 _source/_assets/favicon/apple-icon-114x114.png
create mode 100644 _source/_assets/favicon/apple-icon-120x120.png
create mode 100644 _source/_assets/favicon/apple-icon-144x144.png
create mode 100644 _source/_assets/favicon/apple-icon-152x152.png
create mode 100644 _source/_assets/favicon/apple-icon-180x180.png
create mode 100644 _source/_assets/favicon/apple-icon-57x57.png
create mode 100644 _source/_assets/favicon/apple-icon-60x60.png
create mode 100644 _source/_assets/favicon/apple-icon-72x72.png
create mode 100644 _source/_assets/favicon/apple-icon-76x76.png
create mode 100644 _source/_assets/favicon/apple-icon-precomposed.png
create mode 100644 _source/_assets/favicon/apple-icon.png
create mode 100644 _source/_assets/favicon/favicon-16x16.png
create mode 100644 _source/_assets/favicon/favicon-32x32.png
create mode 100644 _source/_assets/favicon/favicon-96x96.png
create mode 100644 _source/_assets/favicon/favicon.ico
create mode 100644 _source/_assets/favicon/ms-icon-144x144.png
create mode 100644 _source/_assets/favicon/ms-icon-150x150.png
create mode 100644 _source/_assets/favicon/ms-icon-310x310.png
create mode 100644 _source/_assets/favicon/ms-icon-70x70.png
delete mode 100644 _source/_data/author.json
create mode 100644 _source/_includes/meta.html
delete mode 100644 _source/author.njk
delete mode 100644 _source/manifest.json
create mode 100644 _source/manifest.njk
--
Memet Zx
next reply other threads:[~2022-10-22 7:23 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-22 7:23 Memet Zx [this message]
2022-10-22 7:23 ` [PATCH website v1 1/7] remove author data and template Memet Zx
2022-10-22 7:23 ` [PATCH website v1 2/7] rename file manifest to nunjucks format Memet Zx
2022-10-22 7:23 ` [PATCH website v1 4/7] add meta tag list file Memet Zx
2022-10-22 7:23 ` [PATCH website v1 5/7] add config for favicon Memet Zx
2022-10-22 7:23 ` [PATCH website v1 6/7] refactoring head Memet Zx
2022-10-22 7:23 ` [PATCH website v1 7/7] add images on data site Memet Zx
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox