-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmusic.html
More file actions
80 lines (80 loc) · 2.35 KB
/
music.html
File metadata and controls
80 lines (80 loc) · 2.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
---
layout: default
title: My music
---
I publish my music here (only the good stuff though) and I am part of
<a href="https://www.youtube.com/@ostmaniacs00" target="_blank">a team</a>
centered on video game music remixes.
<br><br>
For now I use FL Studio/FLEX and Ableton. Sometimes I like to mess with soundfont stuff,
mainly from the Roland SC-55/Sound Canvas.
<br><br>
<div class="window">
<div class="title-bar">
<div class="title-bar-text">My songs</div>
<div class="title-bar-controls">
<button aria-label="Close"></button>
</div>
</div>
<div class="window-body">
<div class="sunken-panel pics">
<table>
<thead style="text-align: center;">
<tr>
<th>Play the song</th>
<th>Title</th>
<th>Description</th>
<th>Download the song</th>
<th>YouTube link</th>
</tr>
</thead>
<tbody>
{% for song in site.data.music.music %}
<tr>
<td class="songs">
<audio controls src="/assets/mp3/my_music/{{ song.url }}" class="visible-music-player"
preload="metadata"></audio>
</td>
<td style="text-align: center;">
{{ song.title }}
</td>
<td style="text-align: center;">
{{ song.description }}
</td>
<td style="text-align: center;">
<a href="/assets/mp3/my_music/{{ song.url }}">Link</a>
</td>
<td style="text-align: center;">
{% if song.is_on_yt == 'yes' %}
<a href="{{ song.yt_url }}">Link</a>
{% endif %}
{% if song.is_on_yt == 'no' %}
Not available
{% endif %}
</td>
{% endfor %}
</tr>
</tbody>
</table>
</div>
</div>
</div><br>
<div class="window-body">
</div>
<div class="window">
<div class="title-bar">
<div class="title-bar-text">Other music projects</div>
<div class="title-bar-controls">
<button aria-label="Close"></button>
</div>
</div>
<div class="window-body">
<ul>
<li>
I remade the Touhou 6: EoSD soundtrack reimagining for the OPL3 synth.
If you want to listen to it, click
<a href="/projects/music/eosd_opl3.html">here</a>.
</li>
</ul>
</div>
</div><br>