video_template.php 397 B

1234567891011121314151617
  1. <?php
  2. function baseline_video_start($ppub, $path, $video) {
  3. baseline_content_start($ppub, $path);
  4. echo("<section style='padding: 0; margin-bottom: 3rem;' class='larger'>");
  5. generate_embed($path, $video);
  6. echo("</section>");
  7. }
  8. function baseline_video_html($content) {
  9. baseline_content_html($content);
  10. }
  11. function baseline_video_end($ppub) {
  12. baseline_content_end($ppub);
  13. }