watch.edge 668 B

123456789101112131415161718
  1. @layout('partials/body')
  2. @section('container')
  3. <br>
  4. <div class="card">
  5. <div class="card-body">
  6. <h6 class="text-center display-4">{{ video.title }}</h6>
  7. <br>
  8. <div class="embed-responsive embed-responsive-16by9">
  9. <iframe class="embed-responsive-item" width="763" height="450" src="https://www.youtube.com/embed/{{ video.vid }}?autoplay=1" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" ></iframe>
  10. </div>
  11. <hr>
  12. <h4>Information:</h4>
  13. <h5>{{ antl.forLocale(currentLocale).formatMessage('messages.Uploadedby', { channel: video.artist }) }}</h5>
  14. </div>
  15. </div>
  16. <br>
  17. @endsection