Skip to content

Commit

Permalink
Fix media src links
Browse files Browse the repository at this point in the history
So, the slashes might be messing up the media embeds in the captive portal... Ran into this issue during the workshop.
  • Loading branch information
candideu committed Jun 2, 2024
1 parent 3f8fdb2 commit 999bae7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Example Projects/2-Pocket_Portal--Simple_Page/data/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ <h1>Example Page Title</h1>
internet! Enjoy this example page instead! 😊</p>

<figure class="wide-media">
<img src="/media-cover_image.JPG" alt="photograph of spider plants growing against a white concrete wall in Kinshasa">
<img src="media-cover_image.JPG" alt="photograph of spider plants growing against a white concrete wall in Kinshasa">
<figcaption>Sample caption text</figcaption>
</figure>

Expand All @@ -33,7 +33,7 @@ <h2>Traditional Knowledge and the Commons: The Open Movement, Listening, and Lea

<h2>Audio</h2>

<audio controls src="/media-audio.mp3" type="audio/mpeg"></audio>
<audio controls src="media-audio.mp3" type="audio/mpeg"></audio>

<h2>Heading</h2>

Expand All @@ -46,7 +46,7 @@ <h2>Heading</h2>

<h2>Video</h2>

<video controls loop src="/media-video.mp4" type="video/mp4"></video>
<video controls loop src="media-video.mp4" type="video/mp4"></video>

<h2>Heading</h2>

Expand Down

0 comments on commit 999bae7

Please sign in to comment.