mirror of
https://github.com/wassname/talk.git
synced 2026-07-10 04:51:33 +08:00
24 lines
664 B
Plaintext
24 lines
664 B
Plaintext
{% extends "templates/base.njk" %}
|
|
|
|
{% block title %}Talk{% endblock %}
|
|
|
|
{% block css %}
|
|
<link href="{{ resolve('embed/stream/default.css')}}" rel="stylesheet">
|
|
<link href="{{ resolve('embed/stream/bundle.css')}}" rel="stylesheet">
|
|
{% endblock %}
|
|
|
|
{% block html %}
|
|
<div id="talk-embed-stream-container"></div>
|
|
|
|
{#
|
|
Resolves touch handling issues encountered on IOS Safari under certain circumstances
|
|
https://www.pivotaltracker.com/n/projects/1863625
|
|
#}
|
|
<script nonce="{{ nonce }}">document.body.addEventListener('touchstart', function() {});</script>
|
|
|
|
{% endblock %}
|
|
|
|
{% block js %}
|
|
<script src="{{ resolve('embed/stream/bundle.js')}}"></script>
|
|
{% endblock %}
|