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.51.210]) by gnuweeb.org (Postfix) with ESMTPSA id 4BC978060C; Sat, 22 Oct 2022 07:23:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1666423439; bh=5Tk9NLVPRt3G/mY24/KzXgLdcZ8iGTzBx/yIFuhLIRs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=U22O/wTPNGQXtzniTcS6Fg24GLAa/5nw1LaduRIHylKpqaHHTiggy2U8PK73ppdwy fYe+qanePKjjqGITUgbTsKlR8MsytRjQfwQ//VMCr2HLZ1m3cmXCFo5B62V0rpberl kcdjCg3m5Rf0Lr3aqX8J86TT3RZYawhIW2c/2iR5JPSPFY8Xhdqj4Da9YSKA0Voxbp d0O5GbNKIoYEwPWWhDh01+DGdqbC9ZDz1Q+JLGpgBFOAeUUFz6TcIwRhddzSz6pzn2 ZMWabZksBH5ZhRlDF3TW1L3QPG/2Y1J34/6h/1zuzNfGGQNqoXnLNIwjtUHDHezwKz PjRi6H5Df7log== From: Memet Zx To: GNU/Weeb Mailing List Cc: Ammar Faizi , Irvan Malik , Memet Zx Subject: [PATCH website v1 6/7] refactoring head Date: Sat, 22 Oct 2022 14:23:33 +0700 Message-Id: <20221022072334.230479-7-zxce3@gnuweeb.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20221022072334.230479-1-zxce3@gnuweeb.org> References: <20221022072334.230479-1-zxce3@gnuweeb.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: From: Memet Zx add manifest, favicon images and include meta tags file Signed-off-by: Memet Zx --- _source/_includes/head.html | 27 +++++++++++++++++++++------ 1 file changed, 21 insertions(+), 6 deletions(-) diff --git a/_source/_includes/head.html b/_source/_includes/head.html index a391c18..dc756aa 100644 --- a/_source/_includes/head.html +++ b/_source/_includes/head.html @@ -5,14 +5,29 @@ {{ site.title }}{% if section_title %} {{ section_title }}{% endif %}{% if title %}: {{ title }}{% endif %} {% if description -%} + {% else %} + {% endif -%} - - - + {% include 'meta.html' %} + + + + + + + + + + + + + + + + + + -- Memet Zx