Skip to content

Commit

Permalink
Merge branch 'master' into Anika
Browse files Browse the repository at this point in the history
  • Loading branch information
suresh-srinivas authored Sep 27, 2024
2 parents f353e53 + efc78ce commit 9e723ce
Show file tree
Hide file tree
Showing 5 changed files with 77 additions and 0 deletions.
Binary file modified Aarav.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Lavanya.m4a
Binary file not shown.
Binary file modified Pradhyuma.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
64 changes: 64 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
# EveryDay G.I.T.A Challenge

I wanted to share the GitHub repository for the Everyday Gita Challenge - [GitHub Repo](https://github.com/suresh-srinivas/everyday-gita-challenge-chapter12).

## To contribute and send Pull Requests (PRs):

### Fork the repository
Click on the "Fork" button at the top right of the repo page to create your own copy.

### Clone your fork
On your machine, clone your forked repository using the command:

```sh
git clone https://github.com/suresh-srinivas/everyday-gita-challenge-chapter12.git
```

### Create a branch
Before making any changes, create a new branch to work on. Use the command:

```sh
git checkout -b your-branch-name
```

### Make your changes
Implement your changes in the relevant files.

### To add new recordings, modify the \`index.html\` file as follows:

Add a new `<div class="participant">` section for each new participant. Use the following structure for each new participant:

```html
<div class="participant">
<img src="ParticipantImage.jpeg" alt="Participant Name">
<div>
<strong>Participant Name</strong>
<audio controls>
<source src="ParticipantAudioFile.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</div>
</div>
```

Replace `ParticipantImage.jpeg` with the actual image file name, `Participant Name` with the participant's name, and `ParticipantAudioFile.mp3` with the audio file name.

### Commit your changes
Once your changes are ready, commit them with a descriptive message:

```sh
git add .
git commit -m "Added new recordings for [Participant Names]"
```

### Push to your fork
Push your changes to your forked repository using:

```sh
git push origin your-branch-name
```

### Open a Pull Request
Go to the original repository on GitHub and click on "Compare & pull request." Select your branch and create a pull request with a clear description of what you've done.
"""

13 changes: 13 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,20 @@
<header>
<h1>Welcome to the EveryDay G.I.T.A Challenge!</h1>
<img src="main_image.jpeg" alt="Challenge Image" width="300">
<header>
<p>At the conclusion of every chapter, we will have an EveryDay G.I.T.A Challenge to provide opportunities for youth and others to share their audio or video. If you are looking to participate in the challenge, record and share with us:</p>
<ol>
<li>The whole chapter or a verse or two that you connect to</li>
<li>Your picture</li>
<li>Your name</li>
<li>If you are a student, your class/age, and if you are an adult, your profession</li>
<li>The audio recording in mp3 or m4a format. You can also share a video in mp4 if you like</li>
</ol>
<p> Our sincere thanks to everyone that participated and all the teachers (Swati garu, Vinayagopal of MGM) for encouraging their students to participate, and the parents of the youth.
<p> Special thanks to <strong> Anika </strong> a college student for helping put the website together.
<p> Please listen and support the participants on their journey.
</header>

<main>
<h1>2024 G.I.T.A Challenge</h1>

Expand Down

0 comments on commit 9e723ce

Please sign in to comment.