Website-Template

A free for all website template repository.


Read in other languages:

[Portuguese Brazilian](./translations/README.pt-br.md) [English](/Website-Template/) [Spanish](./translations/README.es.md)

Permissions

For Contributors

  1. Make sure that you own the full code & design yourself.
  2. By contributing, you are going to give others the permission to use 100% of your code.

๐ŸŽ‰ Getting Started

  1. Fork this repository.

  2. Clone your forked copy of the project.
    git clone https://github.com/<your_user_name>/Website-Template.git
    
  3. Navigate to project directory.
    cd Website-Template
    
  4. Add reference to original repository (remote).
    git remote add upstream https://github.com/Diptenusarkar/Website-Template.git
    
  5. Before making any changes in the repository, always fetch and pull from the upstream repository to keep your branch updated with the parent repository.
    git pull upstream main
    
  6. Create a new branch.
    git checkout -b <your_branch_name>
    
  7. Create Your template folder, Work on it.
     Ex. "School Website"
    
  8. Move your changes to the git staging area.
    git add .
    
  9. Commit your changes in staging area.
    git commit -m "<relevant message>"
    
  10. Push the committed changes in your local branch to your remote repoโ€™s branch.
    git push -u origin <your_branch_name>
    
  11. Make a pull request (PR). ๐Ÿš€

Our Contributors