all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: sirgazil--- via Guix-patches via <guix-patches@gnu.org>
To: 72314@debbugs.gnu.org
Cc: Luis Felipe <sirgazil@zoho.com>
Subject: [bug#72314] [PATCH v2 3/3] website: Home page template: Untabify.
Date: Wed, 31 Jul 2024 11:18:22 -0500	[thread overview]
Message-ID: <20240731161835.11144-3-sirgazil@zoho.com> (raw)
In-Reply-To: <20240731161835.11144-1-sirgazil@zoho.com>

From: Luis Felipe <sirgazil@zoho.com>

* website/apps/base/templates/home.scm (home-t): Make indentation use
spaces uniformly instead of tabs.
---
 website/apps/base/templates/home.scm | 40 ++++++++++++++--------------
 1 file changed, 20 insertions(+), 20 deletions(-)

diff --git a/website/apps/base/templates/home.scm b/website/apps/base/templates/home.scm
index 4ea923c..b04613f 100644
--- a/website/apps/base/templates/home.scm
+++ b/website/apps/base/templates/home.scm
@@ -32,8 +32,8 @@ Scheme|Transactional upgrades|Functional package \
 management|Reproducibility") #\|)
    #:active-menu-item (C_ "website menu" "Overview")
    #:css (list
-	  (theme-url "css/item-preview.css")
-	  (theme-url "css/index.css")
+          (theme-url "css/item-preview.css")
+          (theme-url "css/index.css")
           (theme-url "css/video-preview.css"))
    #:content
    `(main
@@ -80,8 +80,8 @@ environments, and make these easier to "
        " " ; A space for readability in non-CSS browsers.
        ,(button-big
          #:label (C_ "button" "CONTRIBUTE")
-	 #:url (guix-url "contribute/")
-	 #:light #true)))
+         #:url (guix-url "contribute/")
+         #:light #true)))
 
      ;; Give Users control.
      (section
@@ -99,7 +99,7 @@ packages independently from each other, without superuser privileges."))
           #:url (G_ (manual-url-with-language
                      (G_ "en")
                      "Package-Management.html"))
-	  #:light #true))
+          #:light #true))
 
        (img
         (@ (src ,(guix-url "static/base/img/give-users-control.svg"))
@@ -181,8 +181,8 @@ different computing needs.")))
 
       ,(button-big
         #:label (C_ "button" "EXPLORE PACKAGES")
-	#:url (packages-url)
-	#:light #true))
+        #:url (packages-url)
+        #:light #true))
 
      ;; One Language for Everything.
      (section
@@ -202,12 +202,12 @@ configurations."))
           #:url (G_ (manual-url-with-language
                      (G_ "en")
                      "Programming-Interface.html"))
-	  #:light #true)
+          #:light #true)
         " " ; A space for readability in non-CSS browsers.
         ,(button-big
           #:label (C_ "button" "WHAT'S GUILE")
-	  #:url (gnu-url "software/guile/")
-	  #:light #true))
+          #:url (gnu-url "software/guile/")
+          #:light #true))
 
        (img
         (@ (src ,(guix-url "static/base/img/guile-logo-outlined-floating.svg"))
@@ -228,7 +228,7 @@ computer users. You are free to use, study, modify, and share Guix and \
 all the packages it provides."))
         ,(button-big
           #:label (C_ "button" "LEARN MORE")
-	  #:url (gnu-url "philosophy/free-sw.en.html")))
+          #:url (gnu-url "philosophy/free-sw.en.html")))
 
        (img
         (@ (src ,(guix-url "static/base/img/people-focused.svg"))
@@ -284,8 +284,8 @@ distribution of your preference. It won't clash with your distro's \
 package manager."))
         ,(button-big
           #:label (C_ "button" "DOWNLOAD")
-	  #:url (guix-url "download/")
-	  #:light #true))
+          #:url (guix-url "download/")
+          #:light #true))
 
        (img
         (@ (src ,(guix-url "static/base/img/guix-shell.svg"))
@@ -308,12 +308,12 @@ capabilities of the Guix software. Spawned by Guix itself."))
           #:url (G_ (manual-url-with-language
                      (G_ "en")
                      "System-Installation.html"))
-	  #:light #true)
+          #:light #true)
         " " ; A space for readability in non-CSS browsers.
         ,(button-big
           #:label (C_ "button" "DOWNLOAD")
-	  #:url (guix-url "download/")
-	  #:light #true))
+          #:url (guix-url "download/")
+          #:light #true))
 
        (img
         (@ (src ,(guix-url "static/base/img/guix-system-display.svg"))
@@ -341,8 +341,8 @@ capabilities of the Guix software. Spawned by Guix itself."))
 
        ,(button-big
          #:label (C_ "button" "ALL VIDEOS")
-	 #:url (guix-url "videos/")
-	 #:light #true)))
+         #:url (guix-url "videos/")
+         #:light #true)))
 
      ;; Latest Blog posts.
      (section
@@ -356,7 +356,7 @@ capabilities of the Guix software. Spawned by Guix itself."))
        (@ (class "action-box centered-text"))
        ,(button-big
          #:label (C_ "button" "ALL POSTS")
-	 #:url (guix-url "blog/")
+         #:url (guix-url "blog/")
          #:light #true)))
 
      ;; Contact info.
@@ -371,5 +371,5 @@ capabilities of the Guix software. Spawned by Guix itself."))
        (@ (class "action-box centered-text"))
        ,(button-big
          #:label (C_ "button" "ALL CONTACT MEDIA")
-	 #:url (guix-url "contact/")
+         #:url (guix-url "contact/")
          #:light #true))))))
-- 
2.45.2





      parent reply	other threads:[~2024-07-31 16:22 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-07-26 21:22 [bug#72314] [PATCH 0/2] website: Redesign home page sirgazil--- via Guix-patches via
2024-07-26 21:31 ` [bug#72314] [PATCH 1/2] " sirgazil--- via Guix-patches via
2024-07-26 21:31   ` [bug#72314] [PATCH 2/2] website: Move screenshots style to the screenshots style sheet sirgazil--- via Guix-patches via
2024-07-28 14:05   ` [bug#72314] [PATCH 1/2] website: Redesign home page pelzflorian (Florian Pelz)
2024-07-29  0:55     ` Luis Felipe via Guix-patches via
2024-07-29 17:10 ` [bug#72314] [PATCH 0/3] " sirgazil--- via Guix-patches via
2024-07-29 17:17 ` [bug#72314] [PATCH v1 1/3] " sirgazil--- via Guix-patches via
2024-07-29 17:17   ` [bug#72314] [PATCH v1 2/3] website: Move screenshots style to the screenshots style sheet sirgazil--- via Guix-patches via
2024-07-29 17:17   ` [bug#72314] [PATCH v1 3/3] website: Home page template: Untabify sirgazil--- via Guix-patches via
2024-07-30 15:37   ` [bug#72314] [PATCH v1 1/3] website: Redesign home page pelzflorian (Florian Pelz)
2024-07-30 17:17     ` Luis Felipe via Guix-patches via
2024-07-30 18:08     ` pelzflorian (Florian Pelz)
2024-07-30 22:44       ` Luis Felipe via Guix-patches via
2024-07-31  6:26         ` [bug#72314] claims Guix can make about reproducibility (was Re: [bug#72314] [PATCH v1 1/3] website: Redesign home page.) pelzflorian (Florian Pelz)
2024-07-31 12:47           ` Luis Felipe via Guix-patches via
2024-07-31 15:13             ` pelzflorian (Florian Pelz)
2024-07-31 16:25               ` Luis Felipe via Guix-patches via
2024-08-01 22:53                 ` bug#72314: " pelzflorian (Florian Pelz)
2024-08-01 23:24                   ` [bug#72314] " Luis Felipe via Guix-patches via
2024-07-31 16:18 ` [bug#72314] [PATCH v2 1/3] website: Redesign home page sirgazil--- via Guix-patches via
2024-07-31 16:18   ` [bug#72314] [PATCH v2 2/3] website: Move screenshots style to the screenshots style sheet sirgazil--- via Guix-patches via
2024-07-31 16:18   ` sirgazil--- via Guix-patches via [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240731161835.11144-3-sirgazil@zoho.com \
    --to=guix-patches@gnu.org \
    --cc=72314@debbugs.gnu.org \
    --cc=sirgazil@zoho.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.