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 D4D0381327; Sat, 22 Oct 2022 08:33:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1666427586; bh=NvFDMPQ+5TPKPbhPst2pXPMCQS/hWlof8Ld9CoTxBFg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=B3y60Zt/MGMHc2Xv6KmgQDO+o+7gTEO5SXqAIs3FeeuK4GlyMc5KL3IrJDqVjE2BW WTSTUGJcOiHXT3VT4DzKh+YRd9A5VXKMvhjQyfpaYMWw3ukJ5h+azaJuh2idZzpmK7 LijwN00Ov0pfIn+EQcTUgNcigezLmYctIx+GLXhqschriUjF6/+eHi4M30xssFt5ZK klcuCyyv/DMfMnHqwk/5XGGO5jA4Re9LyHYj85IAvZBCWlbyUBtAB7AbrOaj3WSwKo MiJIPyyp5eGNSHYsPsxbzQ6FbwN+vC2wm5baBHYJGGgQjIwtsybQEpZrPg3LT9NDXo byYNqW82C7xnA== From: Memet Zx To: GNU/Weeb Mailing List Cc: Ammar Faizi , Irvan Malik , Memet Zx Subject: [PATCH website v2 6/7] refactoring head Date: Sat, 22 Oct 2022 15:32:46 +0700 Message-Id: <20221022083247.235518-7-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 add manifest, favicon images and include meta tags file Signed-off-by: Memet Zx --- _source/_includes/head.html | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/_source/_includes/head.html b/_source/_includes/head.html index a391c18..5dd506f 100644 --- a/_source/_includes/head.html +++ b/_source/_includes/head.html @@ -5,14 +5,15 @@ {{ site.title }}{% if section_title %} {{ section_title }}{% endif %}{% if title %}: {{ title }}{% endif %} {% if description -%} + {% else %} + {% endif -%} - - - + {% include 'meta.html' %} + + + + -- Memet Zx