mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +01:00
style(plugin/web): run djlint over html to clean it up a bit
This commit is contained in:
parent
992d376d1b
commit
7c799beda8
1 changed files with 12 additions and 18 deletions
|
|
@ -1,14 +1,17 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="the music geek’s media organizer">
|
||||||
|
<meta name="keywords"
|
||||||
|
content="beets, media, music, library, metadata, player, tagger, grep, transcoder, organizer">
|
||||||
<title>beets</title>
|
<title>beets</title>
|
||||||
|
|
||||||
<link rel="stylesheet"
|
<link rel="stylesheet"
|
||||||
href="{{ url_for('static', filename='beets.css') }}" type="text/css">
|
href="{{ url_for('static', filename='beets.css') }}"
|
||||||
|
type="text/css">
|
||||||
<script src="{{ url_for('static', filename='jquery.js') }}"></script>
|
<script src="{{ url_for('static', filename='jquery.js') }}"></script>
|
||||||
<script src="{{ url_for('static', filename='underscore.js') }}">
|
<script src="{{ url_for('static', filename='underscore.js') }}"></script>
|
||||||
</script>
|
|
||||||
<script src="{{ url_for('static', filename='backbone.js') }}"></script>
|
<script src="{{ url_for('static', filename='backbone.js') }}"></script>
|
||||||
<script src="{{ url_for('static', filename='beets.js') }}"></script>
|
<script src="{{ url_for('static', filename='beets.js') }}"></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
@ -17,18 +20,14 @@
|
||||||
<h1>beets</h1>
|
<h1>beets</h1>
|
||||||
<div id="player">
|
<div id="player">
|
||||||
<audio></audio>
|
<audio></audio>
|
||||||
|
|
||||||
<button class="disabled">▶</button>
|
<button class="disabled">▶</button>
|
||||||
<button class="play">▶</button>
|
<button class="play">▶</button>
|
||||||
<button class="pause" style="letter-spacing: 1px;">❙❙</button>
|
<button class="pause" style="letter-spacing: 1px;">❙❙</button>
|
||||||
|
|
||||||
<span class="times">
|
<span class="times">
|
||||||
<span class="currentTime">
|
<span class="currentTime"></span>
|
||||||
</span>
|
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="entities">
|
<div id="entities">
|
||||||
<form id="queryForm">
|
<form id="queryForm">
|
||||||
<input type="search" id="query" placeholder="Query">
|
<input type="search" id="query" placeholder="Query">
|
||||||
|
|
@ -36,13 +35,8 @@
|
||||||
<ul id="results">
|
<ul id="results">
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
<div id="main-detail"></div>
|
||||||
<div id="main-detail">
|
<div id="extra-detail"></div>
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="extra-detail">
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Templates. -->
|
<!-- Templates. -->
|
||||||
<script type="text/template" id="item-entry-template">
|
<script type="text/template" id="item-entry-template">
|
||||||
<%= artist %> – <%= album %> – <%= title %>
|
<%= artist %> – <%= album %> – <%= title %>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue