You are here

youtubechannel-block.html.twig in YoutubeChannel 8.2

{% if youtube_content.show_error == 1 %}
	<h3>Please configure this section in the {{youtube_content.config_link}}</h3>
{% else %}
	<div id="youtubechannel-player" style="width:{{youtube_content.width}}px; height:{{youtube_content.height}}px;">
		<iframe id="youtubechannel-frame" title="Youtube Video Player" width="{{youtube_content.width}}px" height="{{youtube_content.height}}px;" src="" frameborder="0" allowfullscreen></iframe>  
	</div>
	<div id="youtubechannel-list" style="width: {{youtube_content.width}}px; height: {{youtube_content.height}}px;">
		<ul>
			{% for i in youtube_content.content|keys %}
				<li><a href="#{{i}}"><img src="{{youtube_content.content[i]}}"></a></li>
			{% endfor %}
		</ul>
	</div> 
	<div id="channel_url">{{youtube_content.channel_link}}</div>
{% endif %}

File

templates/youtubechannel-block.html.twig
View source
  1. {% if youtube_content.show_error == 1 %}
  2. <h3>Please configure this section in the {{youtube_content.config_link}}</h3>
  3. {% else %}
  4. <div id="youtubechannel-player" style="width:{{youtube_content.width}}px; height:{{youtube_content.height}}px;">
  5. <iframe id="youtubechannel-frame" title="Youtube Video Player" width="{{youtube_content.width}}px" height="{{youtube_content.height}}px;" src="" frameborder="0" allowfullscreen></iframe>
  6. </div>
  7. <div id="youtubechannel-list" style="width: {{youtube_content.width}}px; height: {{youtube_content.height}}px;">
  8. <ul>
  9. {% for i in youtube_content.content|keys %}
  10. <li><a href="#{{i}}"><img src="{{youtube_content.content[i]}}"></a></li>
  11. {% endfor %}
  12. </ul>
  13. </div>
  14. <div id="channel_url">{{youtube_content.channel_link}}</div>
  15. {% endif %}