Remove pug in favor of a few posthtml plugins
Pug caused no end of issues and is frankly far too heavy-weight for what I want. As it turns out, there are posthtml plugins to do everything pug did for me, so it's getting kicked out.
This commit is contained in:
parent
144e52df2b
commit
db64e511d0
16 changed files with 756 additions and 1554 deletions
10
src/music_sample.html
Normal file
10
src/music_sample.html
Normal file
|
@ -0,0 +1,10 @@
|
|||
<extends src="./lib/html/base.html">
|
||||
<block name="stylesheets">
|
||||
<link rel="stylesheet" , href="music/music.scss" />
|
||||
</block>
|
||||
|
||||
<block name="footer">
|
||||
<div id="playerUI" class="container-fluid flex-grow-1"></div>
|
||||
<script type="text/javascript" src="./music/"></script>
|
||||
</block>
|
||||
</extends>
|
Reference in a new issue