Skip to content

Commit

Permalink
chemin mp3
Browse files Browse the repository at this point in the history
  • Loading branch information
Jules-dejardin committed Oct 4, 2024
1 parent 2d02162 commit b098fb3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/_data/linkTree.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"link": "https://cookiecollectif.bandcamp.com/music"
},
{
"title": "Livecoding.fr",
"title": "LiveCoding.fr",
"link": "https://livecoding.fr"
}
]
]
12 changes: 6 additions & 6 deletions src/wall_of_sound.njk
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ permalink: /wall-of-sound/
{% for project in projects | shuffle %}
<div class="audio-player">
<audio controls>
<source src="https://ccc-static.cookie.paris/{{ project.folder | slugify }}.wav" type="audio/wav" />
<source src="https://ccc-static.cookie.paris/{{ project.folder | slugify }}.mp3" type="audio/mp3" />
<p>
Your web browser does not support HTML5 audio. Here is a link to the file instead:
<a href="https://ccc-static.cookie.paris/{{ project.folder | slugify }}.wav">link</a>.
Your web browser does not support HTML5 audio. Here is a link to the file instead:
<a href="https://ccc-static.cookie.paris/{{ project.folder | slugify }}.mp3">link</a>.
</p>
</audio>
</div>
Expand All @@ -30,16 +30,16 @@ permalink: /wall-of-sound/
margin-top: 3%;
display: grid;
gap: 1.5em;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
padding: 1em;
overflow-y: auto;
max-height: 90vh;
justify-items: center;
}
.audio-player {
width: 100%;
max-width: 500px;
width: 100%;
max-width: 500px;
padding: 1em;
border-radius: 0.5em;
}
Expand Down

0 comments on commit b098fb3

Please sign in to comment.