<p><div class="vc_row wpb_row vc_row-fluid vc_custom_1459859530589"><div class="wpb_column vc_column_container vc_col-sm-12 vc_col-lg-7 vc_col-md-7 vc_col-xs-12"><div class="vc_column-inner"><div class="wpb_wrapper"><h2 class="stm-title stm-font_color_dark-blue stm-title_sep_bottom" style="text-align:left">

Around School
</h2>
	<div class="stm-separator stm-clearfix stm-separator_type_title" style="margin-bottom:60px">
		<div class="stm-separator__line stm-border-b_color_green" ></div>
	</div>

<div class="stm-slider vc_custom_1455265547432" id="stm-slider-69e9e224dcca6" >
	<div class="stm-slider__item">
			<img src="https://icom.vic.edu.au/wp-content/uploads/2016/05/placeholder-1-635x450.gif" width="635" height="450" />	
	</div>
<div class="stm-slider__item">
			<img src="https://icom.vic.edu.au/wp-content/uploads/2016/05/placeholder-1-635x450.gif" width="635" height="450" />	
	</div>
</div>

<script>
	(function($) {
		"use strict";

		$(document).ready(function() {
			var sliderId = '#stm-slider-69e9e224dcca6';

			$(sliderId).owlCarousel({
				loop:true,
				nav:true,
				dots:false,
				items:1,
				navText:['&larr;', '&rarr;'],
				smartSpeed: 450
			});
		});

		$(document).on("click", ".stm-slider__video-play", function() {
			var $this = $(this),
					$videoContainer = $this.parent(),
					videoSrc = $videoContainer.find(".stm-slider__video-iframe").attr('src');

			$videoContainer.find('.stm-slider__video-iframe').attr( 'src', videoSrc + '?autoplay=1' );

			setTimeout(function() {
				$videoContainer.find('.stm-slider__video-poster').addClass('stm-slider__video-poster_state_hidden');
				$this.hide();
			}, 1000);

			return false;
		});

	})(jQuery);
</script></div></div></div><div class="wpb_column vc_column_container vc_col-sm-12 vc_col-lg-5 vc_col-md-5 vc_col-xs-12"><div class="vc_column-inner"><div class="wpb_wrapper"><div class="stm-spacing" id="stm-spacing-69e9e224ddc02"></div>
<script>
	(function($){
		"use strict";
		var spacingID = 'stm-spacing-69e9e224ddc02',
			  lgSpacing = '10px',
			  mdSpacing = '10px',
			  smSpacing = '',
			  xsSpacing = '';

		function smartySpacing() {
			if ( window.matchMedia("(min-width: 1200px)").matches && lgSpacing ) {
				$( '#' + spacingID ).css ( "height", lgSpacing );
			} else if ( window.matchMedia("(max-width: 1199px) and (min-width: 992px )").matches && mdSpacing ) {
				$( '#' + spacingID ).css ( "height", mdSpacing );
			} else if ( window.matchMedia("(max-width: 991px) and (min-width: 768px )").matches && smSpacing ) {
				$( '#' + spacingID ).css ( "height", smSpacing );
			} else if ( window.matchMedia("(max-width: 767px)").matches && xsSpacing ) {
				$( '#' + spacingID ).css ( "height", xsSpacing );
			} else {
				$( '#' + spacingID ).css ( "height", "" );
			}
		}

		$(document).ready(function() {
			smartySpacing();
		});

		$(window).resize(function() {
			smartySpacing();
		});

	})(jQuery);
</script>

<div class="stm-text-box vc_custom_1455693285057 stm-bg_color_green" style="padding-top:59px;padding-bottom:50px;padding-left:155px;padding-right:50px">
	<div class="stm-text-box__content">
									<div class="stm-text-box__text " style="color:#ffffff;font-size:18px;line-height:36px;margin-bottom:26px"><p>Life at Secondary School is captured through multimedia every day — below we provide a small, curated selection of photography, video, and audio.</p>
</div>
							<div class="stm-text-box__action">
				<a class="stm-btn stm-btn_outline stm-btn_md stm-btn_icon-right stm-btn_white stm-btn_position_right" href="http://smartyschool.stylemixthemes.com/gallery-masonry/">Go to gallery<i class="stm-icon stm-icon-arrow-right"></i></a>
			</div>
			</div>
</div>
</div></div></div></div><div data-vc-full-width="true" data-vc-full-width-init="false" class="vc_row wpb_row vc_row-fluid vc_custom_1455618445926 vc_row-has-fill"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner"><div class="wpb_wrapper">

<script>
	(function($) {
		"use strict";

		$(document).ready(function() {
			var carouselId = '#stm-text-carousel-69e9e224df15c',
			    videoCarouselId = '#stm-video-carousel-69e9e224df15d',
			    textCarouselDotsId = '#stm-text-carousel-dots-69e9e224df15e',
				  carouselOptions = {
						items:1,
						dotsContainer: textCarouselDotsId,
					  animateOut: 'fadeOutLeft',
					  animateIn: 'fadeInRight',
					  smartSpeed: 450,
					  autoHeight:true
					};

			$(carouselId).owlCarousel(carouselOptions);

			$(videoCarouselId).owlCarousel({
				items: 1,
				smartSpeed: 450,
				dots: false,
				animateOut: 'fadeOut',
				animateIn: 'fadeIn'

			});

			$(carouselId).on("translate.owl.carousel", function(event) {
				$(videoCarouselId).trigger('to.owl.carousel', [event.item.index, 300, true]);
			});

		});

		$(document).on("click", ".stm-video-carousel__item-play", function() {
			var $this = $(this),
				$videoContainer = $this.closest('.stm-video-carousel__item'),
				videoSrc = $videoContainer.find(".stm-video-carousel__item-video").attr('src');

			$videoContainer.find('.stm-video-carousel__item-video').attr( 'src', videoSrc + '?autoplay=1' );

			setTimeout(function() {
				$videoContainer.find('.stm-video-carousel__item-poster').addClass('stm-video-carousel__item-poster_state_hidden');
				$this.hide();
			}, 1000);

			return false;
		});

	})(jQuery);
</script>
</div></div></div></div><div class="vc_row-full-width vc_clearfix"></div><div class="vc_row wpb_row vc_row-fluid vc_custom_1456657779676"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner"><div class="wpb_wrapper"><h2 class="stm-title stm-font_color_dark-blue stm-title_sep_bottom" style="text-align:left">

Featured Audio
</h2>
	<div class="stm-separator stm-clearfix stm-separator_type_title" >
		<div class="stm-separator__line stm-border-b_color_green" ></div>
	</div>

</div></div></div></div></p>
{"id":1322,"date":"2016-02-16T04:08:44","date_gmt":"2016-02-16T04:08:44","guid":{"rendered":"http:\/\/smartyschool.stylemixthemes.com\/?page_id=1322"},"modified":"2019-12-12T14:42:46","modified_gmt":"2019-12-12T03:42:46","slug":"media","status":"publish","type":"page","link":"https:\/\/icom.vic.edu.au\/fr\/media\/","title":{"rendered":"M\u00e9dias"},"content":{"rendered":"","protected":false},"excerpt":{"rendered":"Around School Life at Secondary School is captured through multimedia every day \u2014 below we provide a small, curated selection of photography, video, and audio. Go to gallery Featured Audio","protected":false},"author":7,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"class_list":["post-1322","page","type-page","status-publish","hentry"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/icom.vic.edu.au\/fr\/wp-json\/wp\/v2\/pages\/1322","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/icom.vic.edu.au\/fr\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/icom.vic.edu.au\/fr\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/icom.vic.edu.au\/fr\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/icom.vic.edu.au\/fr\/wp-json\/wp\/v2\/comments?post=1322"}],"version-history":[{"count":0,"href":"https:\/\/icom.vic.edu.au\/fr\/wp-json\/wp\/v2\/pages\/1322\/revisions"}],"wp:attachment":[{"href":"https:\/\/icom.vic.edu.au\/fr\/wp-json\/wp\/v2\/media?parent=1322"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}