Openpedia
Openpedia copied to clipboard
Chore: Fix 'Open Source Programs' Link in 'Categories' Section
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>
Can you assign me this issue?
Sure. You're assigned, @Kaustav2410!
Hey @Kaustav2410, are you still working on this issue? If you are, please open a PR!
Hello. is this issue available? I would like to work on it please.
Hey @SeanAverS, @Kaustav2410 is currently assigned to this issue. If he doesn't respond for too long, you will be assigned.
@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
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:
- Fork this repository to your own account
- Clone the forked repository to your computer
- Make suggested changes to the local version
- Add and commit the changes
- Push the changes to the remote version (the forked repository on your own account)
- 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.