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 81FCA811A1; Thu, 20 Oct 2022 00:39:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1666226357; bh=qrZ0S7KRKYGAKXrFgywaYHbvraTf2+lLnRGMHARfu9Y=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Zb1/8mivf9pSv8uPSGIUhXDxnH72C6ZzXgqhW2paLZWPwYpxBWt86zsWhoeMeOOKw 8sCjfa5sod9oZihF2SvS273Vn0GBO/iovVaMM4gQcq+j3gaNmtH1dENATRyfAJuO6E /Pz9rbotBXJQtRCzbDpBME0ywxeAt7MxHCOuNwV2s0tGUS3dhWvkSp28QSnEHtwmph 8SIEvuKvkGziiAkgn2FW2OFLvAwwajc6DeqhTK/4gDFk5hMWkJ6+iRE23LEXmo4khS wDyxdb0yWAfTTWqLekkf7seJArWtFgPgvyVXipMnPZEWbmPV3Q5w/LPij7E9fDjiB5 K6/p9E+0pz3WA== From: Ammar Faizi To: GNU/Weeb Mailing List Cc: Ammar Faizi , Irvan Malik , Memet Zx Subject: [PATCH website v1 2/3] page: Exclude the "service" page from the website Date: Thu, 20 Oct 2022 07:39:06 +0700 Message-Id: <20221020003907.1977748-3-ammarfaizi2@gnuweeb.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20221020003907.1977748-1-ammarfaizi2@gnuweeb.org> References: <20221020003907.1977748-1-ammarfaizi2@gnuweeb.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: 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. Signed-off-by: Ammar Faizi --- _source/page/service.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/_source/page/service.md b/_source/page/service.md index 685f67e..473e339 100644 --- a/_source/page/service.md +++ b/_source/page/service.md @@ -1,5 +1,6 @@ --- title: Service +eleventyExcludeFromCollections: true --- -# Service \ No newline at end of file +# Service -- Ammar Faizi