Mercurial > web
annotate music.html @ 54:526c77466ecf
CI: your-name->mrpapersonic
I forgot to save the file...
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Mon, 19 Dec 2022 17:14:33 -0500 |
parents | 1a6df6d6b7ea |
children | c95a96b61d9a |
rev | line source |
---|---|
20 | 1 <!DOCTYPE html> |
2 <head> | |
42 | 3 <link href="https://maxcdn.bootstrapcdn.com/bootstrap/2.3.2/css/bootstrap.min.css" rel="stylesheet" media="screen"> |
4 <link rel="shortcut icon" type="image/x-icon" href="favicon.ico?"> | |
5 <!-- <script src="https://code.jquery.com/jquery.js"></script> | |
6 <script src="js/bootstrap/js/bootstrap.min.js"></script> --> | |
32
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
7 <script> |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
8 window['libopenmpt'] = {}; |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
9 |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
10 libopenmpt.locateFile = function(filename) { |
39
35c68429641d
[music.html] Use updated libopenmpt
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
37
diff
changeset
|
11 return "./js/" + filename; |
32
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
12 }; |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
13 |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
14 libopenmpt.onRuntimeInitialized = function() { |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
15 var player; |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
16 |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
17 function init() { |
53
1a6df6d6b7ea
music: use The Mod Archive for direct links
Paper <mrpapersonic@gmail.com>
parents:
50
diff
changeset
|
18 if (player == undefined) |
41
f71c5c19940f
Specify our interpolation filter in music.html
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
40
diff
changeset
|
19 player = new ChiptuneJsPlayer(new ChiptuneJsConfig(-1, 100, 1)); |
53
1a6df6d6b7ea
music: use The Mod Archive for direct links
Paper <mrpapersonic@gmail.com>
parents:
50
diff
changeset
|
20 else |
32
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
21 player.stop(); |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
22 } |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
23 |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
24 function afterLoad(path, buffer) { |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
25 player.play(buffer); |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
26 setMetadata(path); |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
27 } |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
28 |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
29 function loadURL(path) { |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
30 init(); |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
31 player.load(path, afterLoad.bind(this, path)); |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
32 } |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
33 |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
34 function setMetadata(filename) { |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
35 var metadata = player.metadata(); |
53
1a6df6d6b7ea
music: use The Mod Archive for direct links
Paper <mrpapersonic@gmail.com>
parents:
50
diff
changeset
|
36 if (metadata['title'] != '') |
32
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
37 document.getElementById('title').innerHTML = metadata['title']; |
53
1a6df6d6b7ea
music: use The Mod Archive for direct links
Paper <mrpapersonic@gmail.com>
parents:
50
diff
changeset
|
38 else |
32
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
39 document.getElementById('title').innerHTML = filename; |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
40 } |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
41 |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
42 function pauseButton() { |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
43 player.togglePause(); |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
44 } |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
45 |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
46 document.querySelector('#playpause').addEventListener('click', pauseButton, false); |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
47 document.querySelectorAll('.song').forEach(function(e) { |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
48 e.addEventListener('click', function(evt) { |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
49 loadURL(evt.target.getAttribute("data-modurl")); |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
50 }, false); |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
51 }); |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
52 }; |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
53 </script> |
40
d5d97f45b103
We don't store chiptune2.js locally
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
39
diff
changeset
|
54 <script type="application/javascript" src="//cdn.jsdelivr.net/gh/deskjet/chiptune2.js@a97e04cc7e98924f6ad17980d6eeca3f764378b5/chiptune2.js"></script> |
39
35c68429641d
[music.html] Use updated libopenmpt
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
37
diff
changeset
|
55 <script type="application/javascript" src="./js/libopenmpt.js"></script> |
20 | 56 <title>Music - Paper's website</title> |
57 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
21
3c7989047451
Make code prettier and fix a few visual errors
Paper <mrpapersonic@gmail.com>
parents:
20
diff
changeset
|
58 <meta name="viewport" content="width=device-width, initial-scale=1.0"/> |
20 | 59 <style> |
60 @import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@300&display=swap'); | |
61 .navbar { | |
47
f85e7261bc0f
everything *should* be the same everywhere now
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
46
diff
changeset
|
62 font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; |
27
f86d23d40885
Fix mobile navbar being centered on music.html
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
25
diff
changeset
|
63 text-align: left; /* Override body text align */ |
20 | 64 } |
65 body { | |
21
3c7989047451
Make code prettier and fix a few visual errors
Paper <mrpapersonic@gmail.com>
parents:
20
diff
changeset
|
66 background-size: cover; |
3c7989047451
Make code prettier and fix a few visual errors
Paper <mrpapersonic@gmail.com>
parents:
20
diff
changeset
|
67 background: url("forest.png") no-repeat center center fixed; |
3c7989047451
Make code prettier and fix a few visual errors
Paper <mrpapersonic@gmail.com>
parents:
20
diff
changeset
|
68 color: white; |
20 | 69 font-family: 'Source Sans 3', sans-serif; |
21
3c7989047451
Make code prettier and fix a few visual errors
Paper <mrpapersonic@gmail.com>
parents:
20
diff
changeset
|
70 text-align: center; |
20 | 71 text-shadow: 5px 0 10px rgba(0, 0, 0, 0.5); |
72 } | |
73 div.box { | |
21
3c7989047451
Make code prettier and fix a few visual errors
Paper <mrpapersonic@gmail.com>
parents:
20
diff
changeset
|
74 background-color: rgba(0, 0, 0, 0.7); |
3c7989047451
Make code prettier and fix a few visual errors
Paper <mrpapersonic@gmail.com>
parents:
20
diff
changeset
|
75 box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5) inset; |
3c7989047451
Make code prettier and fix a few visual errors
Paper <mrpapersonic@gmail.com>
parents:
20
diff
changeset
|
76 color: white; |
3c7989047451
Make code prettier and fix a few visual errors
Paper <mrpapersonic@gmail.com>
parents:
20
diff
changeset
|
77 left: 0; |
20 | 78 margin: 1% auto; |
79 max-width: 500px; | |
21
3c7989047451
Make code prettier and fix a few visual errors
Paper <mrpapersonic@gmail.com>
parents:
20
diff
changeset
|
80 padding: 10px; |
20 | 81 right: 0; |
21
3c7989047451
Make code prettier and fix a few visual errors
Paper <mrpapersonic@gmail.com>
parents:
20
diff
changeset
|
82 text-align: center; |
20 | 83 top: 50%; |
84 } | |
85 a:link, a:visited, a:hover, a:active { | |
86 color: #ff6600; | |
87 } | |
88 </style> | |
89 </head> | |
90 <body> | |
45
e44fb9a05998
why does this work?
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
44
diff
changeset
|
91 <div class="navbar-wrapper"> |
46
44b4ca6897f4
ok container was the fix and i'm just dumb
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
45
diff
changeset
|
92 <div class="container" style="width: 98%;margin-top:1%;"> |
45
e44fb9a05998
why does this work?
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
44
diff
changeset
|
93 <div class="navbar navbar-inverse" style="box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5)"> |
e44fb9a05998
why does this work?
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
44
diff
changeset
|
94 <div class="navbar-inner"> |
50
65a2123aaf04
Make the brand text on navbar link to main page
Paper <mrpapersonic@gmail.com>
parents:
47
diff
changeset
|
95 <a class="brand" href="./">Paper's website</a> |
45
e44fb9a05998
why does this work?
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
44
diff
changeset
|
96 <ul class="nav"> |
e44fb9a05998
why does this work?
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
44
diff
changeset
|
97 <li><a href="./">Home</a></li> |
e44fb9a05998
why does this work?
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
44
diff
changeset
|
98 <li class="active"><a href="#">Music</a></li> |
e44fb9a05998
why does this work?
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
44
diff
changeset
|
99 <li><a href="projects.html">Projects</a></li> |
e44fb9a05998
why does this work?
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
44
diff
changeset
|
100 </ul> |
e44fb9a05998
why does this work?
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
44
diff
changeset
|
101 </div> |
e44fb9a05998
why does this work?
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
44
diff
changeset
|
102 </div> |
e44fb9a05998
why does this work?
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
44
diff
changeset
|
103 </div> |
e44fb9a05998
why does this work?
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
44
diff
changeset
|
104 </div> |
20 | 105 <h1>Music</h1> |
106 <div class="box"> | |
32
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
107 <p>Now playing:</p> |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
108 <p id="title">nothing loaded</p> |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
109 <button type="button" class="btn btn-primary" id="playpause">Play/Pause</button> |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
110 </div> |
fc37e1f8b89e
Add chiptune2.js functionality
Paper <mrpapersonic@gmail.com>
parents:
31
diff
changeset
|
111 <div class="box"> |
20 | 112 <h2>Originals</h2> |
53
1a6df6d6b7ea
music: use The Mod Archive for direct links
Paper <mrpapersonic@gmail.com>
parents:
50
diff
changeset
|
113 <p><a href="#" class="song" data-modurl="https://api.modarchive.org/downloads.php?moduleid=194229">Old Desk Tribute [.XM]</a> <a href="https://api.modarchive.org/downloads.php?moduleid=194229#paper_-_old_desk_tribute.xm">(Download)</a></p> |
1a6df6d6b7ea
music: use The Mod Archive for direct links
Paper <mrpapersonic@gmail.com>
parents:
50
diff
changeset
|
114 <p><a href="#" class="song" data-modurl="https://api.modarchive.org/downloads.php?moduleid=194228">Chippy-Go-Lucky [.XM]</a> <a href="https://api.modarchive.org/downloads.php?moduleid=194228#paper_-_chippygolucky.xm">(Download)</a></p> |
1a6df6d6b7ea
music: use The Mod Archive for direct links
Paper <mrpapersonic@gmail.com>
parents:
50
diff
changeset
|
115 <p><a href="#" class="song" data-modurl="https://api.modarchive.org/downloads.php?moduleid=194154">Whistling Meadows [.IT]</a> <a href="https://api.modarchive.org/downloads.php?moduleid=194154#paper_-_whistling_meadows.it">(Download)</a></p> |
1a6df6d6b7ea
music: use The Mod Archive for direct links
Paper <mrpapersonic@gmail.com>
parents:
50
diff
changeset
|
116 <p><a href="#" class="song" data-modurl="https://api.modarchive.org/downloads.php?moduleid=193897">xX ShartLover1337 Xx [.S3M]</a> <a href="https://api.modarchive.org/downloads.php?moduleid=193897#paper_-_shartlover.s3m">(Download)</a></p> |
1a6df6d6b7ea
music: use The Mod Archive for direct links
Paper <mrpapersonic@gmail.com>
parents:
50
diff
changeset
|
117 <p><a href="#" class="song" data-modurl="https://api.modarchive.org/downloads.php?moduleid=193607">Reaching the World Border [.IT]</a> <a href="https://api.modarchive.org/downloads.php?moduleid=193607#paper_-_reaching_the_world_border.it">(Download)</a></p> |
1a6df6d6b7ea
music: use The Mod Archive for direct links
Paper <mrpapersonic@gmail.com>
parents:
50
diff
changeset
|
118 <p><a href="#" class="song" data-modurl="https://api.modarchive.org/downloads.php?moduleid=192651">THIS IS SARTA [.MPTM]</a> <a href="https://api.modarchive.org/downloads.php?moduleid=192651#paper_-_sarta.mptm">(Download)</a></p> |
1a6df6d6b7ea
music: use The Mod Archive for direct links
Paper <mrpapersonic@gmail.com>
parents:
50
diff
changeset
|
119 </div> |
1a6df6d6b7ea
music: use The Mod Archive for direct links
Paper <mrpapersonic@gmail.com>
parents:
50
diff
changeset
|
120 <div> |
1a6df6d6b7ea
music: use The Mod Archive for direct links
Paper <mrpapersonic@gmail.com>
parents:
50
diff
changeset
|
121 <h2>Collabs</h2> |
1a6df6d6b7ea
music: use The Mod Archive for direct links
Paper <mrpapersonic@gmail.com>
parents:
50
diff
changeset
|
122 <p><a href="#" class="song" data-modurl="https://api.modarchive.org/downloads.php?moduleid=198747">USA Keyboard [.IT] (co-op with ishineee, rainbow, and quyu)</a> <a href="https://api.modarchive.org/downloads.php?moduleid=198747#usa_keyboard_final.it">(Download)</a></p> |
20 | 123 </div> |
124 <div class="box"> | |
125 <h2>Covers</h2> | |
53
1a6df6d6b7ea
music: use The Mod Archive for direct links
Paper <mrpapersonic@gmail.com>
parents:
50
diff
changeset
|
126 <p><a href="#" class="song" data-modurl="https://api.modarchive.org/downloads.php?moduleid=199486">huxchx [.IT]</a> <a href="https://api.modarchive.org/downloads.php?moduleid=199486#paper_-_huxchx.it">(Download)</a></p> |
1a6df6d6b7ea
music: use The Mod Archive for direct links
Paper <mrpapersonic@gmail.com>
parents:
50
diff
changeset
|
127 <p><a href="#" class="song" data-modurl="https://api.modarchive.org/downloads.php?moduleid=196945">Gerudo Valley (OPL2) [.S3M]</a> <a href="https://api.modarchive.org/downloads.php?moduleid=196945#gerudo_valley.s3m">(Download)</a></p> |
1a6df6d6b7ea
music: use The Mod Archive for direct links
Paper <mrpapersonic@gmail.com>
parents:
50
diff
changeset
|
128 <p><a href="#" class="song" data-modurl="https://api.modarchive.org/downloads.php?moduleid=194255">TinTin on the Moon [.MOD]</a> <a href="https://api.modarchive.org/downloads.php?moduleid=194255#paper_-_tintin_on_the_moon.mod">(Download)</a></p> |
1a6df6d6b7ea
music: use The Mod Archive for direct links
Paper <mrpapersonic@gmail.com>
parents:
50
diff
changeset
|
129 <p><a href="#" class="song" data-modurl="https://api.modarchive.org/downloads.php?moduleid=194152">Dance in the universe cover [.MOD]</a> <a href="https://api.modarchive.org/downloads.php?moduleid=194152#paper_-_dance_in_the_universe_cover.mod">(Download)</a></p> |
1a6df6d6b7ea
music: use The Mod Archive for direct links
Paper <mrpapersonic@gmail.com>
parents:
50
diff
changeset
|
130 <p><a href="#" class="song" data-modurl="https://api.modarchive.org/downloads.php?moduleid=194058">Super Mario 64 - Bob-omb Battlefield Remix [.IT]</a> <a href="https://api.modarchive.org/downloads.php?moduleid=194058#paper_-_bob-omb_battlefield_remix.it">(Download)</a></p> |
1a6df6d6b7ea
music: use The Mod Archive for direct links
Paper <mrpapersonic@gmail.com>
parents:
50
diff
changeset
|
131 <p><a href="#" class="song" data-modurl="https://api.modarchive.org/downloads.php?moduleid=192921">(mashup) Drax - Tiger Mission Hi-score + ESCHATOS OST - Point of No Return [.IT]</a> <a href="https://api.modarchive.org/downloads.php?moduleid=192921#paper_-_point_of_no_hi-score.it">(Download)</a></p> |
1a6df6d6b7ea
music: use The Mod Archive for direct links
Paper <mrpapersonic@gmail.com>
parents:
50
diff
changeset
|
132 <p><a href="#" class="song" data-modurl="https://api.modarchive.org/downloads.php?moduleid=192722">(remake) Naruto - VRC6N001 [.IT]</a> <a href="https://api.modarchive.org/downloads.php?moduleid=192722#paper_-_vrc6n001_remake.it">(Download)</a></p> |
1a6df6d6b7ea
music: use The Mod Archive for direct links
Paper <mrpapersonic@gmail.com>
parents:
50
diff
changeset
|
133 <p><a href="#" class="song" data-modurl="https://api.modarchive.org/downloads.php?moduleid=192494">Deltarune - Hip Shop [.IT]</a> <a href="https://api.modarchive.org/downloads.php?moduleid=192494#paper_-_hip_shop.it">(Download)</a></p> |
1a6df6d6b7ea
music: use The Mod Archive for direct links
Paper <mrpapersonic@gmail.com>
parents:
50
diff
changeset
|
134 <p><a href="#" class="song" data-modurl="https://api.modarchive.org/downloads.php?moduleid=191811">ziner - Flatwoods Monster [.IT]</a> <a href="https://api.modarchive.org/downloads.php?moduleid=191811#paper_-_nerou.it">(Download)</a></p> |
1a6df6d6b7ea
music: use The Mod Archive for direct links
Paper <mrpapersonic@gmail.com>
parents:
50
diff
changeset
|
135 <p><a href="#" class="song" data-modurl="https://api.modarchive.org/downloads.php?moduleid=191735">Leonz - Among Us Drip Theme [.XM]</a> <a href="https://api.modarchive.org/downloads.php?moduleid=191735#paper_-_drip.xm">(Download)</a></p> |
1a6df6d6b7ea
music: use The Mod Archive for direct links
Paper <mrpapersonic@gmail.com>
parents:
50
diff
changeset
|
136 <p><a href="#" class="song" data-modurl="https://api.modarchive.org/downloads.php?moduleid=191381">Childish Gambino - 3005 [.IT]</a> <a href="https://api.modarchive.org/downloads.php?moduleid=191381#paper_-_3005.it">(Download)</a></p> |
1a6df6d6b7ea
music: use The Mod Archive for direct links
Paper <mrpapersonic@gmail.com>
parents:
50
diff
changeset
|
137 <p><a href="#" class="song" data-modurl="https://api.modarchive.org/downloads.php?moduleid=191287">Cho Ren Sha 68k - Infinity [.IT]</a> <a href="https://api.modarchive.org/downloads.php?moduleid=191287#paper_-_infinity.it">(Download)</a></p> |
1a6df6d6b7ea
music: use The Mod Archive for direct links
Paper <mrpapersonic@gmail.com>
parents:
50
diff
changeset
|
138 <p><a href="#" class="song" data-modurl="https://api.modarchive.org/downloads.php?moduleid=191006">Aphex Twin - Avril 14th [.IT]</a> <a href="https://api.modarchive.org/downloads.php?moduleid=191006#paper_-_bestending.it">(Download)</a></p> |
1a6df6d6b7ea
music: use The Mod Archive for direct links
Paper <mrpapersonic@gmail.com>
parents:
50
diff
changeset
|
139 <p><a href="#" class="song" data-modurl="https://api.modarchive.org/downloads.php?moduleid=190865">KOTO - Visitors [.XM]</a> <a href="https://api.modarchive.org/downloads.php?moduleid=190865#paper_-_visitors.xm">(Download)</a></p> |
1a6df6d6b7ea
music: use The Mod Archive for direct links
Paper <mrpapersonic@gmail.com>
parents:
50
diff
changeset
|
140 <p><a href="#" class="song" data-modurl="https://api.modarchive.org/downloads.php?moduleid=190803">Naruto - VRC6N001 [.IT]</a> <a href="https://api.modarchive.org/downloads.php?moduleid=190803#paper_-_vrc6n001.it">(Download)</a></p> |
20 | 141 </div> |
142 </body> |