Created a plugin to tackle #1181. Currently have an issue with tikzjax since it imports some wasm file from its javascript. The rest should work as expected. --------- Signed-off-by: George Araujo <george.gcac@gmail.com>
17 lines
563 B
Plaintext
17 lines
563 B
Plaintext
{% if site.enable_masonry %}
|
|
<!-- Masonry & imagesLoaded -->
|
|
<script
|
|
defer
|
|
src="{{ site.third_party_libraries.masonry.url.js }}"
|
|
integrity="{{ site.third_party_libraries.masonry.integrity.js }}"
|
|
crossorigin="anonymous"
|
|
></script>
|
|
<script
|
|
defer
|
|
src="{{ site.third_party_libraries.imagesloaded.url.js }}"
|
|
integrity="{{ site.third_party_libraries.imagesloaded.integrity.js }}"
|
|
crossorigin="anonymous"
|
|
></script>
|
|
<script defer src="{{ '/assets/js/masonry.js' | relative_url }}" type="text/javascript"></script>
|
|
{% endif %}
|