Openpedia icon indicating copy to clipboard operation
Openpedia copied to clipboard

Chore: Fix 'Open Source Programs' Link in 'Categories' Section

Open Sriparno08 opened this issue 9 months ago • 2 comments

Category

  • [ ] Documentation
  • [ ] Resource Addition
  • [x] Codebase
  • [ ] User Interface
  • [ ] Feature Request

Description

We need to fix a broken link in the 'Categories' section of the landing page that heads to the 'Open Source Programs' page.

Step 1: Go to client/index.html Step 2: Find the following link under <section class="categories">...</section>

<a href="./opensource_programs/index.html" class="category-link">More</a>

Step 3: Change it to

<a href="./pages/open-source-programs/index.html" class="category-link">More</a>

Sriparno08 avatar May 02 '24 18:05 Sriparno08

Can you assign me this issue?

Kaustav2410 avatar May 07 '24 20:05 Kaustav2410

Sure. You're assigned, @Kaustav2410!

Sriparno08 avatar May 08 '24 06:05 Sriparno08

Hey @Kaustav2410, are you still working on this issue? If you are, please open a PR!

Sriparno08 avatar May 20 '24 07:05 Sriparno08

Hello. is this issue available? I would like to work on it please.

SeanAverS avatar May 21 '24 03:05 SeanAverS

Hey @SeanAverS, @Kaustav2410 is currently assigned to this issue. If he doesn't respond for too long, you will be assigned.

Sriparno08 avatar May 21 '24 05:05 Sriparno08

@Sriparno08 I am getting this error remote: Permission to Sriparno08/Openpedia.git denied to Kaustav2410. fatal: unable to access 'https://github.com/Sriparno08/Openpedia.git/': The requested URL returned error: 403

Kaustav2410 avatar May 21 '24 19:05 Kaustav2410

Hey @Kaustav2410, you have probably cloned this repository to your computer, made changes to the local version (the one on your computer) and pushed them to the remote version (the one that you have cloned). This is not allowed, which is probably the reason behind you encountering the error.

Here are the actual steps:

  1. Fork this repository to your own account
  2. Clone the forked repository to your computer
  3. Make suggested changes to the local version
  4. Add and commit the changes
  5. Push the changes to the remote version (the forked repository on your own account)
  6. Open a pull request

If you haven't gone through this cycle before, you can learn it from the First Contributions repository. It teaches you all the necessary steps that you need to follow to open a pull request.

Sriparno08 avatar May 22 '24 05:05 Sriparno08