1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php ! defined( 'ABSPATH' ) && exit();
include $template->getPath( 'views/shared/header.php' ); ?> <div class="totalpoll-questions"> <?php foreach ( $poll->getQuestionsForVote() as $question ): include $template->getPath( 'views/vote/question.php' ); endforeach; ?> </div> <?php ! defined( 'ABSPATH' ) && exit();
include $template->getPath( 'views/shared/footer.php' );
|