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 3652381327; Sat, 22 Oct 2022 08:32:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1666427576; bh=SE3Idc4m3fqzkk3twIXaKYNE4Icu2qrLz3vFvRSU3as=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=YQrdyobRdCfH1DkT+5qWAg+ozpnnDR4MVXNQF5kwJODttjkQiv4VR+1peIX2jHaBh y6dCZ+4I6Sv2QlqOwaA2wKCnjUoIciogsoYuUfsnOVxqqEOL3l2shmaZ78Gtd/q4ol WYwTGixpEvi/NEJQ9nVYhko8fZl12CYT697zaIjIYiMDHChmGHgvclsn4UWZt1x3mz 7ZvPghS5gK8Ye2Xq2efzb8NWaAhWQuTB6ylmEkgd5+UZVLhE2sNpliiQwxTMhjKkrE 2O4CawCT2X+cKCSNEtwJULEJFyA3EUJliLdOBgceo5ImU2AerwYFRpwn+ENvyzSbjK PhMHZbKluqrAg== From: Memet Zx To: GNU/Weeb Mailing List Cc: Ammar Faizi , Irvan Malik , Memet Zx Subject: [PATCH website v2 1/7] remove author data and template Date: Sat, 22 Oct 2022 15:32:41 +0700 Message-Id: <20221022083247.235518-2-zxce3@gnuweeb.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20221022083247.235518-1-zxce3@gnuweeb.org> References: <20221022083247.235518-1-zxce3@gnuweeb.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: From: Memet Zx i forgot that it wasn't used here Signed-off-by: Memet Zx --- _source/_data/author.json | 10 ---------- _source/author.njk | 10 ---------- 2 files changed, 20 deletions(-) delete mode 100644 _source/_data/author.json delete mode 100644 _source/author.njk diff --git a/_source/_data/author.json b/_source/_data/author.json deleted file mode 100644 index d9abaf5..0000000 --- a/_source/_data/author.json +++ /dev/null @@ -1,10 +0,0 @@ -[ - { - "fullname": "Ammar Faizi", - "username": "ammarfaizi2" - }, - { - "fullname": "irvanmalik48", - "username": "irvanmalik48" - } -] \ No newline at end of file diff --git a/_source/author.njk b/_source/author.njk deleted file mode 100644 index 1be8545..0000000 --- a/_source/author.njk +++ /dev/null @@ -1,10 +0,0 @@ ---- -layout: base -pagination: - data: author - size: 1 - alias: author -permalink: "author/{{ author.username | slug }}/" ---- - -{{ author.username }} is {{ author.fullname }} \ No newline at end of file -- Memet Zx