This repository is for the Python User Group Nepal's website. The site is a modern, responsive static website built with HTML, CSS, and JavaScript.
├── index.html # Homepage
├── css/
│ └── style.css # Main stylesheet
├── js/
│ └── main.js # JavaScript functionality
├── images/
│ └── logo/ # Logo assets
├── pages/
│ ├── companies.html # Companies using Python in Nepal
│ ├── developers.html # Python developers in Nepal
│ ├── meetups.html # Meetup information
│ ├── resources.html # Learning resources
│ └── videos.html # Video content
├── components/
│ ├── header.html # Reusable header component
│ └── footer.html # Reusable footer component
└── static/ # PDF files and other static assets
-
Clone the repository
git clone git@github.com:<your-username>/pythonnepal.github.io.git pynepal-website cd pynepal-website
-
Start a local server
Using Python:
python -m http.server 8000
Or using any other static file server of your choice.
-
Visit the local site
Open your browser and go to http://localhost:8000
See CONTRIBUTING.md
If you're a Python developer from Nepal, you can add yourself to the developers page:
- Fork the repository
- Edit
pages/developers.html - Add your information following the existing format
- Send us a pull request
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request against the
sourcebranch
See LICENSE