mirror of
https://github.com/daylinmorgan/task.mk.git
synced 2024-11-10 11:13:15 -06:00
16 lines
283 B
HTML
16 lines
283 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block scripts %}
|
|
|
|
{{ super() }}
|
|
|
|
{% if page.meta %}
|
|
{% if page.meta.asciinema %}
|
|
<script async>
|
|
AsciinemaPlayer.create('./demo.cast', document.getElementById('demo-cast'),{loop: true});
|
|
</script>
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
|
|
{% endblock %}
|