@extends('layouts.' . $template_name)
@section('own-content')
    {{-- se incluye el contenedor sidebar y subheader --}}
    @include('shared.commons.container-sidebar-subheader', ['windows_side' => true, 'page_subheader' => true])
   
    {{-- sections test --}}
    @include('shared.sections.photos_section1')
    @if($template_config->template->photo_models == 'withtext')
        @include('shared.sections.photos_section2')
    @endif
    {{-- ./ --}}
@stop
@section('extra-head')
    @parent
    {{-- Html::style('css/photos.css', [], $isSSL) --}}
    {!! Html::style(app()->environment('production') ? mix('css/photos.css') : asset('css/photos.css'), [], $isSSL) !!}
    
@endsection
@section('extra-scripts')
    @parent
    
    {!! Html::script('js/photos.js', [], Request::secure()) !!}
@endsection