GNU/Weeb Mailing List <[email protected]>
 help / color / mirror / Atom feed
* [PATCH website v1 0/3] Website cleanups
@ 2022-10-20  0:39 Ammar Faizi
  2022-10-20  0:39 ` [PATCH website v1 1/3] index: Fix stupid sentence in the index page Ammar Faizi
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Ammar Faizi @ 2022-10-20  0:39 UTC (permalink / raw)
  To: GNU/Weeb Mailing List; +Cc: Ammar Faizi, Irvan Malik, Memet Zx

Hi,

This series contains several website cleanups. There are 3 patches
in this series:

# Patch 1
index: Fix stupid sentence in the index page. The sentence introduced
in commit 7b3954c321de ("update index.md") is grammatically wrong. Fix
it.

# Patch 2
page: Exclude the "service" page from the website. 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.

# Patch 3
.gitignore: Add *.patch to .gitignore. Obviously, to avoid patch file
being committed.

Signed-off-by: Ammar Faizi <[email protected]>
---

Ammar Faizi (3):
  index: Fix stupid sentence in the index page
  page: Exclude the "service" page from the website
  .gitignore: Add *.patch to .gitignore

 .gitignore              | 3 ++-
 _source/index.md        | 5 +----
 _source/page/service.md | 3 ++-
 3 files changed, 5 insertions(+), 6 deletions(-)


base-commit: cad31e5c5f0879e5b63f8107283d78ae8f4f3369
prerequisite-patch-id: d1f759f9987f0f2c08835a6cb09ecf4ff1fff8de
prerequisite-patch-id: cc4ffb79bd207887e718758b8fa6b88eb99926c6
-- 
Ammar Faizi


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH website v1 1/3] index: Fix stupid sentence in the index page
  2022-10-20  0:39 [PATCH website v1 0/3] Website cleanups Ammar Faizi
@ 2022-10-20  0:39 ` Ammar Faizi
  2022-10-20  0:39 ` [PATCH website v1 2/3] page: Exclude the "service" page from the website Ammar Faizi
  2022-10-20  0:39 ` [PATCH website v1 3/3] .gitignore: Add *.patch to .gitignore Ammar Faizi
  2 siblings, 0 replies; 4+ messages in thread
From: Ammar Faizi @ 2022-10-20  0:39 UTC (permalink / raw)
  To: GNU/Weeb Mailing List; +Cc: Ammar Faizi, Irvan Malik, Memet Zx

The sentence introduced in commit 7b3954c321de ("update index.md") is
grammatically wrong. Fix it.

Fixes: 7b3954c321de ("update index.md")
Signed-off-by: Ammar Faizi <[email protected]>
---
 _source/index.md | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/_source/index.md b/_source/index.md
index 3587f1d..364a550 100644
--- a/_source/index.md
+++ b/_source/index.md
@@ -3,7 +3,4 @@ layout: page
 title: "Home!"
 ---
 
-# What is GNU/Weeb?
-
-GNU/Weeb is comunity that working on open-source technology
-
+We are working to build community through open source technology.
-- 
Ammar Faizi


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH website v1 2/3] page: Exclude the "service" page from the website
  2022-10-20  0:39 [PATCH website v1 0/3] Website cleanups Ammar Faizi
  2022-10-20  0:39 ` [PATCH website v1 1/3] index: Fix stupid sentence in the index page Ammar Faizi
@ 2022-10-20  0:39 ` Ammar Faizi
  2022-10-20  0:39 ` [PATCH website v1 3/3] .gitignore: Add *.patch to .gitignore Ammar Faizi
  2 siblings, 0 replies; 4+ messages in thread
From: Ammar Faizi @ 2022-10-20  0:39 UTC (permalink / raw)
  To: GNU/Weeb Mailing List; +Cc: Ammar Faizi, Irvan Malik, Memet Zx

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 <[email protected]>
---
 _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


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH website v1 3/3] .gitignore: Add *.patch to .gitignore
  2022-10-20  0:39 [PATCH website v1 0/3] Website cleanups Ammar Faizi
  2022-10-20  0:39 ` [PATCH website v1 1/3] index: Fix stupid sentence in the index page Ammar Faizi
  2022-10-20  0:39 ` [PATCH website v1 2/3] page: Exclude the "service" page from the website Ammar Faizi
@ 2022-10-20  0:39 ` Ammar Faizi
  2 siblings, 0 replies; 4+ messages in thread
From: Ammar Faizi @ 2022-10-20  0:39 UTC (permalink / raw)
  To: GNU/Weeb Mailing List; +Cc: Ammar Faizi, Irvan Malik, Memet Zx

Avoid patch file being committed.

Signed-off-by: Ammar Faizi <[email protected]>
---
 .gitignore | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index 18d5e87..db35ef7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
 node_modules/
-public/
\ No newline at end of file
+public/
+*.patch
-- 
Ammar Faizi


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-10-20  0:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-20  0:39 [PATCH website v1 0/3] Website cleanups Ammar Faizi
2022-10-20  0:39 ` [PATCH website v1 1/3] index: Fix stupid sentence in the index page Ammar Faizi
2022-10-20  0:39 ` [PATCH website v1 2/3] page: Exclude the "service" page from the website Ammar Faizi
2022-10-20  0:39 ` [PATCH website v1 3/3] .gitignore: Add *.patch to .gitignore Ammar Faizi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox