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.253.183.71]) by gnuweeb.org (Postfix) with ESMTPSA id 456388060C; Thu, 20 Oct 2022 00:39:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1666226352; bh=ozcj1Iy+wM89JQvAUyEV7WrIyEwk+KFLr6P8k6Q/WEw=; h=From:To:Cc:Subject:Date:From; b=SrNDfjG8I4cXHgAs4uRI3ze2/RlGXyGUkl2Vn8FsIg7AjLkdPsNl6hCS/EwZv3lqN 2APs3ZLSxY2BjeC712lhFJFjKz8Owup7fW3bdt7zSvemEPLr0C2wf/xu+e5GIZQzA0 go97qdWE8BFxP+lI85sO9Io9CWPRkbFtNlhwn8WNMzuXGJAkB/CuQBOU+r6JYq86Dq YaTjAHcapd8Me2a+0ROeKGL+HmI7tUx9nqKzuFQuo0rMJH4s91+WyCiMYvKq7wOhkv GiDa4FdekcCVzIp8ln/W+i9vJNs0Fy6UvlDfs/K3rZRBGGqjcMn2i7PaWaYsMVCqpJ eT11TX0NvS1Zg== From: Ammar Faizi To: GNU/Weeb Mailing List Cc: Ammar Faizi , Irvan Malik , Memet Zx Subject: [PATCH website v1 0/3] Website cleanups Date: Thu, 20 Oct 2022 07:39:04 +0700 Message-Id: <20221020003907.1977748-1-ammarfaizi2@gnuweeb.org> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Hi, This series contains several website cleanups. There are 3 patches in this series: # Patch 1 index: Fix stupid sentence in the index page. The sentence introduced in commit 7b3954c321de ("update index.md") is grammatically wrong. Fix it. # Patch 2 page: Exclude the "service" page from the website. Currently, the "service" page is empty and displayed. It doesn't make much sense to show an empty page like this. Add "eleventyExcludeFromCollections: true" in the "service.md" file to avoid this page being displayed, but don't delete this file for now. In the future, if we plan to use this file, just remove the exclusion attribute. # Patch 3 .gitignore: Add *.patch to .gitignore. Obviously, to avoid patch file being committed. Signed-off-by: Ammar Faizi --- Ammar Faizi (3): index: Fix stupid sentence in the index page page: Exclude the "service" page from the website .gitignore: Add *.patch to .gitignore .gitignore | 3 ++- _source/index.md | 5 +---- _source/page/service.md | 3 ++- 3 files changed, 5 insertions(+), 6 deletions(-) base-commit: cad31e5c5f0879e5b63f8107283d78ae8f4f3369 prerequisite-patch-id: d1f759f9987f0f2c08835a6cb09ecf4ff1fff8de prerequisite-patch-id: cc4ffb79bd207887e718758b8fa6b88eb99926c6 -- Ammar Faizi