From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,NO_DNS_FOR_FROM,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.6 Received: from localhost.localdomain (unknown [182.1.62.32]) by gnuweeb.org (Postfix) with ESMTPSA id 628FF81214; Sat, 22 Oct 2022 08:32:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1666427574; bh=Ml0ms/OYnt3YhuvD4mAKB1bIPT+AukOSDRpNXf/k4lE=; h=From:To:Cc:Subject:Date:From; b=qllgiBRfgTD35V7fIMd5BwTVtrhWe5sKLNZrnPS9xwomMOYE7tnC9y1M5ojpvPOds XjGB1uHBCm3bdN7hNjfvxG2ET2JSDy8vMFbNF17QVgotdkCBUPSRJ5V/iwz8ZszDR6 MK82o0HKsix3lOUYqWEAiyEW4YZ+BRyGgNBYaopZmSAyMz76szhYacatO0sqlnHKLH Q9MxaCpWCauYJsJPMgh1q97/4LwBHGsl9nrXTlrEwGJo5UzCUW1SEbOoXg621wOlvQ hC+VkiRkAtVHkyR8Kb1DSMf7zHw6ChcFg7aKkFS2aVcR1BPxZIHG0ePKk8jemQ/A7B csdItqLK809bw== From: Memet Zx To: GNU/Weeb Mailing List Cc: Ammar Faizi , Irvan Malik , Memet Zx Subject: [PATCH website v2 0/7] Add meta tag and favicon Date: Sat, 22 Oct 2022 15:32:40 +0700 Message-Id: <20221022083247.235518-1-zxce3@gnuweeb.org> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: From: Memet Zx Hi, This is v2 revision of additions and fixes: Previously I added too many image files and they weren't very useful either, so I minimized the files that would be used in the repo/website ## Changelog: v1 -> v2: - Delete unused images - refactoring head - fix known problem 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 +-- _source/_assets/favicon/favicon.ico | Bin 0 -> 1150 bytes _source/_data/author.json | 10 --------- _source/_data/site.json | 1 + _source/_includes/head.html | 13 ++++++----- _source/_includes/meta.html | 33 ++++++++++++++++++++++++++++ _source/author.njk | 10 --------- _source/manifest.json | 0 _source/manifest.njk | 19 ++++++++++++++++ 9 files changed, 61 insertions(+), 28 deletions(-) create mode 100644 _source/_assets/favicon/favicon.ico 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 base-commit: 657fc07a39da486cf24b3bb4620b554f70de983d -- Memet Zx