Help Improve This Website#
This website is open-source and available on GitHub at 3sztof/3sztof.github.io. Suggestions, corrections, and improvements are always welcome! If you’ve found a typo, have an idea for new content, or want to suggest improvements, there are several ways to contribute.
How to Suggest Edits#
Option 1: Opening a GitHub Issue#
The easiest way to suggest changes is by opening a GitHub issue. You can use our issue templates to make the process easier:
Quick Links to Create an Issue:#
Manual Process:#
Go to the repository: Visit https://github.com/3sztof/3sztof.github.io
Navigate to Issues: Click on the “Issues” tab near the top of the repository page
Create a new issue: Click the green “New issue” button and select an appropriate template
Provide details:
- Use a clear, descriptive title
- Fill in the template with specific information about your suggestion
- Include the URL of the page you’re referring to
- For content corrections, include both the current text and your suggested revision
- You can use Markdown formatting in your issue description
Submit: Click “Submit new issue”
Example Issue#
Here’s an example of a well-formatted issue:
Title: Typo on About page - "descriptn" should be "description"
Description:
On the About page (https://3sztof.github.io/about/page/),
there's a typo in the second paragraph:
Current text: "TODO: add a descriptn how this site is built"
Suggested change: "TODO: add a description how this site is built"
Option 2: Creating a Pull Request#
If you’re comfortable with Git and Hugo, you can directly propose changes by:
Fork the repository: Click the “Fork” button at the top right of the repository page
Clone your fork:
git clone https://github.com/YOUR-USERNAME/3sztof.github.io.git
Create a branch:
git checkout -b fix-typo
Make your changes: Edit the relevant files
Commit and push:
git commit -am "Fix typo in about page" git push origin fix-typo
Create a pull request: Go to the original repository and click “New pull request”, then select your branch
The pull request will automatically use our PR template to help you provide all necessary information
Content Guidelines#
When suggesting content changes, please:
- Keep the same writing style as the rest of the site
- Ensure technical accuracy
- Include references or sources if adding new information
- Follow the existing formatting conventions
Thank You!#
Your contributions help make this site better for everyone. Thank you for taking the time to suggest improvements!