I have a go template like https://github.com/kaihendry/ltabus/blob/master/static/index.html
What is my best strategy to inline CSS/JS on compilation?
E.g. on execution I want <link rel='stylesheet' href='/static/style.css'> to become:
<style>
body {
padding: 5px;
font-size: 120%;
} ... /* and so forth */
</style>
Perhaps I should have a build step / Makefile?