You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
1.0 KiB

5 years ago
<% if (theme.music && theme.music.enable == true) { %>
6 years ago
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/aplayer@1.7.0/dist/APlayer.min.css">
<div class="aplayer"
6 years ago
data-theme="<%- aplayer_theme != undefined ? aplayer_theme : theme.music.color %>"
6 years ago
<%if(aplayer_mini){%>data-mini=true <%}%>
6 years ago
<%if(aplayer_autoplay != undefined ? aplayer_autoplay : theme.music.autoplay){%>data-autoplay=true <%}%>
data-mode="<%- aplayer_mode != undefined ? aplayer_mode : theme.music.mode %>"
data-server="<%= aplayer_server != undefined ? aplayer_server : theme.music.server %>"
data-type="<%= aplayer_type != undefined ? aplayer_type : theme.music.type %>"
4 years ago
data-id="<%= aplayer_id != undefined ? aplayer_id : theme.music.id %>"
6 years ago
data-volume="<%= aplayer_volume != undefined ? aplayer_volume : theme.music.volume %>">
6 years ago
</div>
5 years ago
<script src="https://cdn.jsdelivr.net/npm/aplayer@1.7.0/dist/APlayer.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/meting@1.1.0/dist/Meting.min.js"></script>
6 years ago
<% } %>