ozcoder
ozcoder
Or even https://squoosh.app
They are still counted as render blocking, right? I was thinking of putting a NOSCRIPT tag around our print.css, and using JavaScript on page load (async) to add the print...
Please don't forget the related issue https://github.com/JupiterBroadcasting/jupiterbroadcasting.com/issues/326
 Found this rocket I created a while ago. ```
I'm not sure how to word this. I would like the _download name_ to be human readable with a show name and episode number instead of a hexadecimal name Eg....
Or you could put something like ```{{ .Text | safeHTML }}``` in **themes/jb/layouts/_default/_markup/render-link.html** To get ```The Talk Show Live From WWDC 2019``` generated.
Maybe alphabetical too?
Like this? ```diff --git a/themes/jb/assets/css/components/footer.sass b/themes/jb/assets/css/components/footer.sass index 55c036c..891ef4a 100644 --- a/themes/jb/assets/css/components/footer.sass +++ b/themes/jb/assets/css/components/footer.sass @@ -7,3 +7,9 @@ .title color: $white margin-bottom: 0.5rem + @include until($tablet) + ul + display: flex...
This almost works for sorting the links ```diff --git a/themes/jb/layouts/partials/footer.html b/themes/jb/layouts/partials/footer.html index 2426af7..b766c3b 100644 --- a/themes/jb/layouts/partials/footer.html +++ b/themes/jb/layouts/partials/footer.html @@ -10,7 +10,7 @@ {{ .Site.Params.footer.left.headline }} - {{ range where site.RegularPages...
I think a better way is to detect the page it is going to be included in, and not including it in pages it shouldn't be on.