@extends('layouts/LayoutMaster')
@section('title', $pageConfigs['pageTitle'])
@section('vendor-style')
@endsection
@section('page-style')
@if($pageConfigs['filterType'] == 'recommends')
@endif
@endsection
@section('content')
@if($pageConfigs['filterType'] == 'recommends')
@foreach($lents as $lenta)
@if($pageConfigs['filterType'] != 'mylents' && $pageConfigs['filterType'] != 'channel' && $pageConfigs['filterType'] != 'recommends')
@include('includes/filter/menu', ['filterType' => $pageConfigs['filterType']])
@endif
@if($pageConfigs['isFolder'] == 0)
@include('includes/post/index', ['posts' => $lents])
@else
@include('includes/post/folderCard', ['folders' => $lents])
@endif
@endif
@endsection
@section('content-right')
@include('includes/right-menu')