Initial Commit

The initial public commit of MVGL website code.
This commit is contained in:
Jimmy B. 2024-01-14 13:51:43 -06:00
commit b39ecf1638
2043 changed files with 215154 additions and 0 deletions

View file

@ -0,0 +1,84 @@
<?php
// List items
$listRows = array(
array(
'icon' => 'icons/duotune/abstract/abs027.svg',
'color' => 'success',
'title' => 'Project Briefing',
'description' => 'Project Manager',
),
array(
'icon' => 'icons/duotune/art/art005.svg',
'color' => 'warning',
'title' => 'Concept Design',
'description' => 'Art Director'
),
array(
'icon' => 'icons/duotune/communication/com012.svg',
'color' => 'primary',
'title' => 'Functional Logics',
'description' => 'Lead Developer'
),
array(
'icon' => 'icons/duotune/coding/cod008.svg',
'color' => 'danger',
'title' => 'Development',
'description' => 'DevOps'
),
array(
'icon' => 'icons/duotune/general/gen049.svg',
'color' => 'info',
'title' => 'Testing',
'description' => 'QA Managers'
)
);
?>
<!--begin::List Widget 1-->
<div class="card {{ $class }}">
<!--begin::Header-->
<div class="card-header border-0 pt-5">
<h3 class="card-title align-items-start flex-column">
<span class="card-label fw-bolder text-dark">Tasks Overview</span>
<span class="text-muted mt-1 fw-bold fs-7">Pending 10 tasks</span>
</h3>
<div class="card-toolbar">
<!--begin::Menu-->
<button type="button" class="btn btn-sm btn-icon btn-color-primary btn-active-light-primary" data-kt-menu-trigger="click" data-kt-menu-placement="bottom-end">
{!! theme()->getSvgIcon("icons/duotune/general/gen024.svg", "svg-icon-2") !!}
</button>
{{ theme()->getView('partials/menus/_menu-1') }}
<!--end::Menu-->
</div>
</div>
<!--end::Header-->
<!--begin::Body-->
<div class="card-body pt-5">
@foreach($listRows as $row)
<!--begin::Item-->
<div class="d-flex align-items-center {{ util()->putIf(next($listRows), 'mb-7') }}">
<!--begin::Symbol-->
<div class="symbol symbol-50px me-5">
<span class="symbol-label bg-light-{{ $row['color'] }}">
{!! theme()->getSvgIcon($row['icon'], "svg-icon-2x svg-icon-" . $row['color']); !!}
</span>
</div>
<!--end::Symbol-->
<!--begin::Text-->
<div class="d-flex flex-column">
<a href="#" class="text-dark text-hover-primary fs-6 fw-bolder">{{ $row['title'] }}</a>
<span class="text-muted fw-bold">{{ $row['description'] }}</span>
</div>
<!--end::Text-->
</div>
<!--end::Item-->
@endforeach
</div>
<!--end::Body-->
</div>
<!--end::List Widget 1-->

View file

@ -0,0 +1,73 @@
<!--begin::List Widget 2-->
<?php
// List items
$listRows = array(
array(
'avatar' => 'avatars/300-6.jpg',
'name' => 'Emma Smith',
'description' => 'Project Manager',
),
array(
'avatar' => 'avatars/300-5.jpg',
'name' => 'Sean Bean',
'description' => 'PHP, SQLite, Artisan CLI',
),
array(
'avatar' => 'avatars/300-11.jpg',
'name' => 'Brian Cox',
'description' => 'PHP, SQLite, Artisan CLI',
),
array(
'avatar' => 'avatars/300-9.jpg',
'name' => 'Francis Mitcham',
'description' => 'PHP, SQLite, Artisan CLI',
),
array(
'avatar' => 'avatars/300-23.jpg',
'name' => 'Dan Wilson',
'description' => 'PHP, SQLite, Artisan CLI',
)
);
?>
<div class="card {{ $class }}">
<!--begin::Header-->
<div class="card-header border-0">
<h3 class="card-title fw-bolder text-dark">Authors</h3>
<div class="card-toolbar">
<!--begin::Menu-->
<button type="button" class="btn btn-sm btn-icon btn-color-primary btn-active-light-primary" data-kt-menu-trigger="click" data-kt-menu-placement="bottom-end">
{!! theme()->getSvgIcon("icons/duotune/general/gen024.svg", "svg-icon-2") !!}
</button>
{{ theme()->getView('partials/menus/_menu-2') }}
<!--end::Menu-->
</div>
</div>
<!--end::Header-->
<!--begin::Body-->
<div class="card-body pt-2">
@foreach($listRows as $index => $row)
<!--begin::Item-->
<div class="d-flex align-items-center {{ util()->putIf(next($listRows), 'mb-7') }}">
<!--begin::Avatar-->
<div class="symbol symbol-50px me-5">
<img src="{{ asset(theme()->getMediaUrlPath() . $row['avatar']) }}" class="" alt=""/>
</div>
<!--end::Avatar-->
<!--begin::Text-->
<div class="flex-grow-1">
<a href="#" class="text-dark fw-bolder text-hover-primary fs-6">{{ $row['name'] }}</a>
<span class="text-muted d-block fw-bold">{{ $row['description'] }}</span>
</div>
<!--end::Text-->
</div>
<!--end::Item-->
@endforeach
</div>
<!--end::Body-->
</div>
<!--end::List Widget 2-->

View file

@ -0,0 +1,85 @@
<?php
// List items
$listRows = array(
array(
'color' => 'success',
'title' => 'Create FireStone Logo',
'text' => 'Due in 2 Days',
),
array(
'color' => 'primary',
'title' => 'Stakeholder Meeting',
'text' => 'Due in 3 Days'
),
array(
'color' => 'warning',
'title' => 'Scoping & Estimations',
'text' => 'Due in 5 Days'
),
array(
'color' => 'primary',
'title' => 'KPI App Showcase',
'text' => 'Due in 2 Days'
),
array(
'color' => 'danger',
'title' => 'Project Meeting',
'text' => 'Due in 12 Days'
),
array(
'color' => 'success',
'title' => 'Customers Update',
'text' => 'Due in 1 week'
)
);
?>
<!--begin::List Widget 3-->
<div class="card {{ $class }}">
<!--begin::Header-->
<div class="card-header border-0">
<h3 class="card-title fw-bolder text-dark">Todo</h3>
<div class="card-toolbar">
<!--begin::Menu-->
<button type="button" class="btn btn-sm btn-icon btn-color-primary btn-active-light-primary" data-kt-menu-trigger="click" data-kt-menu-placement="bottom-end">
{!! theme()->getSvgIcon("icons/duotune/general/gen024.svg", "svg-icon-2") !!}
</button>
{{ theme()->getView('partials/menus/_menu-3') }}
<!--end::Menu-->
</div>
</div>
<!--end::Header-->
<!--begin::Body-->
<div class="card-body pt-2">
@foreach($listRows as $row)
<!--begin::Item-->
<div class="d-flex align-items-center {{ util()->putIf(next($listRows), 'mb-8') }}">
<!--begin::Bullet-->
<span class="bullet bullet-vertical h-40px bg-{{ $row['color'] }}"></span>
<!--end::Bullet-->
<!--begin::Checkbox-->
<div class="form-check form-check-custom form-check-solid mx-5">
<input class="form-check-input" type="checkbox" value=""/>
</div>
<!--end::Checkbox-->
<!--begin::Description-->
<div class="flex-grow-1">
<a href="#" class="text-gray-800 text-hover-primary fw-bolder fs-6">{{ $row['title'] }}</a>
<span class="text-muted fw-bold d-block">{{ $row['text'] }}</span>
</div>
<!--end::Description-->
<span class="badge badge-light-{{ $row['color'] }} fs-8 fw-bolder">New</span>
</div>
<!--end:Item-->
@endforeach
</div>
<!--end::Body-->
</div>
<!--end:List Widget 3-->

View file

@ -0,0 +1,104 @@
<?php
// List items
$listRows = array(
array(
'image' => 'svg/brand-logos/plurk.svg',
'title' => 'Top Authors',
'text' => 'Mark, Rowling, Esther',
'badge' => '+82$'
),
array(
'image' => 'svg/brand-logos/telegram.svg',
'title' => 'Popular Authors',
'text' => 'Randy, Steve, Mike',
'badge' => '+280$'
),
array(
'image' => 'svg/brand-logos/vimeo.svg',
'title' => 'New Users',
'text' => 'John, Pat, Jimmy',
'badge' => '+4500$'
),
array(
'image' => 'svg/brand-logos/bebo.svg',
'title' => 'Active Customers',
'text' => 'Mark, Rowling, Esther',
'badge' => '+4500$'
),
array(
'image' => 'svg/brand-logos/kickstarter.svg',
'title' => 'Bestseller Theme',
'text' => 'Disco, Retro, Sports',
'badge' => '+4500$',
'space' => ''
),
array(
'image' => 'svg/brand-logos/fox-hub.svg',
'title' => 'Fox Broker App',
'text' => 'Finance, Corporate, Apps',
'badge' => '+4500$'
),
);
$items = $items ?? 0;
?>
<!--begin::List Widget 4-->
<div class="card {{ $class }}">
<!--begin::Header-->
<div class="card-header border-0 pt-5">
<h3 class="card-title align-items-start flex-column">
<span class="card-label fw-bolder text-dark">Trends</span>
<span class="text-muted mt-1 fw-bold fs-7">Latest tech trends</span>
</h3>
<div class="card-toolbar">
<!--begin::Menu-->
<button type="button" class="btn btn-sm btn-icon btn-color-primary btn-active-light-primary" data-kt-menu-trigger="click" data-kt-menu-placement="bottom-end">
{!! theme()->getSvgIcon("icons/duotune/general/gen024.svg", "svg-icon-2") !!}
</button>
{{ theme()->getView('partials/menus/_menu-3') }}
<!--end::Menu-->
</div>
</div>
<!--end::Header-->
<!--begin::Body-->
<div class="card-body pt-5">
@foreach($listRows as $index => $row)
<?php
if ($items > 0 && $index > ($items - 1)) {
break;
}
?>
<!--begin::Item-->
<div class="d-flex align-items-sm-center {{ util()->putIf(next($listRows), 'mb-7') }}">
<!--begin::Symbol-->
<div class="symbol symbol-50px me-5">
<span class="symbol-label">
<img src="{{ asset(theme()->getMediaUrlPath() . $row['image']) }}" class="h-50 align-self-center" alt=""/>
</span>
</div>
<!--end::Symbol-->
<!--begin::Section-->
<div class="d-flex align-items-center flex-row-fluid flex-wrap">
<div class="flex-grow-1 me-2">
<a href="#" class="text-gray-800 text-hover-primary fs-6 fw-bolder">{{ $row['title'] }}</a>
<span class="text-muted fw-bold d-block fs-7">{{ $row['text'] }}</span>
</div>
<span class="badge badge-light fw-bolder my-2">{{ $row['badge'] }}</span>
</div>
<!--end::Section-->
</div>
<!--end::Item-->
@endforeach
</div>
<!--end::Body-->
</div>
<!--end::List Widget 4-->

View file

@ -0,0 +1,191 @@
<!--begin::List Widget 5-->
<div class="card {{ $class }}">
<!--begin::Header-->
<div class="card-header align-items-center border-0 mt-4">
<h3 class="card-title align-items-start flex-column">
<span class="fw-bolder mb-2 text-dark">Activities</span>
<span class="text-muted fw-bold fs-7">890,344 Sales</span>
</h3>
<div class="card-toolbar">
<!--begin::Menu-->
<button type="button" class="btn btn-sm btn-icon btn-color-primary btn-active-light-primary" data-kt-menu-trigger="click" data-kt-menu-placement="bottom-end">
{!! theme()->getSvgIcon("icons/duotune/general/gen024.svg", "svg-icon-2"); !!}
</button>
{{ theme()->getView('partials/menus/_menu-1') }}
<!--end::Menu-->
</div>
</div>
<!--end::Header-->
<!--begin::Body-->
<div class="card-body pt-5">
<!--begin::Timeline-->
<div class="timeline-label">
<!--begin::Item-->
<div class="timeline-item">
<!--begin::Label-->
<div class="timeline-label fw-bolder text-gray-800 fs-6">08:42</div>
<!--end::Label-->
<!--begin::Badge-->
<div class="timeline-badge">
<i class="fa fa-genderless text-warning fs-1"></i>
</div>
<!--end::Badge-->
<!--begin::Text-->
<div class="fw-mormal timeline-content text-muted ps-3">
Outlines keep you honest. And keep structure
</div>
<!--end::Text-->
</div>
<!--end::Item-->
<!--begin::Item-->
<div class="timeline-item">
<!--begin::Label-->
<div class="timeline-label fw-bolder text-gray-800 fs-6">10:00</div>
<!--end::Label-->
<!--begin::Badge-->
<div class="timeline-badge">
<i class="fa fa-genderless text-success fs-1"></i>
</div>
<!--end::Badge-->
<!--begin::Content-->
<div class="timeline-content d-flex">
<span class="fw-bolder text-gray-800 ps-3">AEOL meeting</span>
</div>
<!--end::Content-->
</div>
<!--end::Item-->
<!--begin::Item-->
<div class="timeline-item">
<!--begin::Label-->
<div class="timeline-label fw-bolder text-gray-800 fs-6">14:37</div>
<!--end::Label-->
<!--begin::Badge-->
<div class="timeline-badge">
<i class="fa fa-genderless text-danger fs-1"></i>
</div>
<!--end::Badge-->
<!--begin::Desc-->
<div class="timeline-content fw-bolder text-gray-800 ps-3">
Make deposit
<a href="#" class="text-primary">USD 700</a>.
to ESL
</div>
<!--end::Desc-->
</div>
<!--end::Item-->
<!--begin::Item-->
<div class="timeline-item">
<!--begin::Label-->
<div class="timeline-label fw-bolder text-gray-800 fs-6">16:50</div>
<!--end::Label-->
<!--begin::Badge-->
<div class="timeline-badge">
<i class="fa fa-genderless text-primary fs-1"></i>
</div>
<!--end::Badge-->
<!--begin::Text-->
<div class="timeline-content fw-mormal text-muted ps-3">
Indulging in poorly driving and keep structure keep great
</div>
<!--end::Text-->
</div>
<!--end::Item-->
<!--begin::Item-->
<div class="timeline-item">
<!--begin::Label-->
<div class="timeline-label fw-bolder text-gray-800 fs-6">21:03</div>
<!--end::Label-->
<!--begin::Badge-->
<div class="timeline-badge">
<i class="fa fa-genderless text-danger fs-1"></i>
</div>
<!--end::Badge-->
<!--begin::Desc-->
<div class="timeline-content fw-bold text-gray-800 ps-3">
New order placed <a href="#" class="text-primary">#XF-2356</a>.
</div>
<!--end::Desc-->
</div>
<!--end::Item-->
<!--begin::Item-->
<div class="timeline-item">
<!--begin::Label-->
<div class="timeline-label fw-bolder text-gray-800 fs-6">16:50</div>
<!--end::Label-->
<!--begin::Badge-->
<div class="timeline-badge">
<i class="fa fa-genderless text-primary fs-1"></i>
</div>
<!--end::Badge-->
<!--begin::Text-->
<div class="timeline-content fw-mormal text-muted ps-3">
Indulging in poorly driving and keep structure keep great
</div>
<!--end::Text-->
</div>
<!--end::Item-->
<!--begin::Item-->
<div class="timeline-item">
<!--begin::Label-->
<div class="timeline-label fw-bolder text-gray-800 fs-6">21:03</div>
<!--end::Label-->
<!--begin::Badge-->
<div class="timeline-badge">
<i class="fa fa-genderless text-danger fs-1"></i>
</div>
<!--end::Badge-->
<!--begin::Desc-->
<div class="timeline-content fw-bold text-gray-800 ps-3">
New order placed <a href="#" class="text-primary">#XF-2356</a>.
</div>
<!--end::Desc-->
</div>
<!--end::Item-->
<!--begin::Item-->
<div class="timeline-item">
<!--begin::Label-->
<div class="timeline-label fw-bolder text-gray-800 fs-6">10:30</div>
<!--end::Label-->
<!--begin::Badge-->
<div class="timeline-badge">
<i class="fa fa-genderless text-success fs-1"></i>
</div>
<!--end::Badge-->
<!--begin::Text-->
<div class="timeline-content fw-mormal text-muted ps-3">
Finance KPI Mobile app launch preparion meeting
</div>
<!--end::Text-->
</div>
<!--end::Item-->
</div>
<!--end::Timeline-->
</div>
<!--end: Card Body-->
</div>
<!--end: List Widget 5-->

View file

@ -0,0 +1,80 @@
<?php
// List items
$listRows = array(
array(
'color' => 'warning',
'icon' => 'icons/duotune/abstract/abs027.svg',
'title' => 'Group lunch celebration',
'text' => 'Due in 2 Days',
'number' => '+28%'
),
array(
'color' => 'success',
'icon' => 'icons/duotune/art/art005.svg',
'title' => 'Navigation optimization',
'text' => 'Due in 2 Days',
'number' => '+50%'
),
array(
'color' => 'danger',
'icon' => 'icons/duotune/communication/com012.svg',
'title' => 'Rebrand strategy planning',
'text' => 'Due in 5 Days',
'number' => '-27%'
),
array(
'color' => 'info',
'icon' => 'icons/duotune/communication/com012.svg',
'title' => 'Product goals strategy',
'text' => 'Due in 7 Days',
'number' => '+8%'
)
);
?>
<!--begin::List Widget 6-->
<div class="card {{ $class }}">
<!--begin::Header-->
<div class="card-header border-0">
<h3 class="card-title fw-bolder text-dark">Notifications</h3>
<div class="card-toolbar">
<!--begin::Menu-->
<button type="button" class="btn btn-sm btn-icon btn-color-primary btn-active-light-primary" data-kt-menu-trigger="click" data-kt-menu-placement="bottom-end">
{!! theme()->getSvgIcon("icons/duotune/general/gen024.svg", "svg-icon-2") !!}
</button>
{{ theme()->getView('partials/menus/_menu-3') }}
<!--end::Menu-->
</div>
</div>
<!--end::Header-->
<!--begin::Body-->
<div class="card-body pt-0">
@foreach($listRows as $row)
<!--begin::Item-->
<div class="d-flex align-items-center bg-light-{{ $row['color'] }} rounded p-5 {{ util()->putIf(next($listRows), 'mb-7') }}">
<!--begin::Icon-->
<span class="svg-icon svg-icon-{{ $row['color'] }} me-5">
{!! theme()->getSvgIcon("icons/duotune/abstract/abs027.svg", "svg-icon-1"); !!}
</span>
<!--end::Icon-->
<!--begin::Title-->
<div class="flex-grow-1 me-2">
<a href="#" class="fw-bolder text-gray-800 text-hover-primary fs-6">{{ $row['title'] }}</a>
<span class="text-muted fw-bold d-block">{{ $row['text'] }}</span>
</div>
<!--end::Title-->
<!--begin::Lable-->
<span class="fw-bolder text-{{ $row['color'] }} py-1">{{ $row['number'] }}</span>
<!--end::Lable-->
</div>
<!--end::Item-->
@endforeach
</div>
<!--end::Body-->
</div>
<!--end::List Widget 6-->

View file

@ -0,0 +1,85 @@
<?php
// List items
$listRows = array(
array(
'image' => 'stock/600x400/img-20.jpg',
'color' => 'success',
'title' => 'Cup & Green',
'text' => 'Size: 87KB',
'badge' => 'Approved'
),
array(
'image' => 'stock/600x400/img-19.jpg',
'color' => 'warning',
'title' => 'Yellow Background',
'text' => 'Size: 1.2MB',
'badge' => 'In Progress'
),
array(
'image' => 'stock/600x400/img-25.jpg',
'color' => 'success',
'title' => 'Nike & Blue',
'text' => 'Size: 87KB',
'badge' => 'Success'
),
array(
'image' => 'stock/600x400/img-24.jpg',
'color' => 'danger',
'title' => 'Red Boots',
'text' => 'Size: 345KB',
'badge' => 'Rejected'
)
);
?>
<!--begin::List Widget 7-->
<div class="card {{ $class }}">
<!--begin::Header-->
<div class="card-header align-items-center border-0 mt-4">
<h3 class="card-title align-items-start flex-column">
<span class="fw-bolder text-dark">Latest Media</span>
<span class="text-muted mt-1 fw-bold fs-7">Articles and publications</span>
</h3>
<div class="card-toolbar">
<!--begin::Menu-->
<button type="button" class="btn btn-sm btn-icon btn-color-primary btn-active-light-primary" data-kt-menu-trigger="click" data-kt-menu-placement="bottom-end">
{!! theme()->getSvgIcon("icons/duotune/general/gen024.svg", "svg-icon-2") !!}
</button>
{{ theme()->getView('partials/menus/_menu-1') }}
<!--end::Menu-->
</div>
</div>
<!--end::Header-->
<!--begin::Body-->
<div class="card-body pt-3">
@foreach($listRows as $row)
<!--begin::Item-->
<div class="d-flex align-items-sm-center {{ util()->putIf(next($listRows), 'mb-7') }}">
<!--begin::Symbol-->
<div class="symbol symbol-60px symbol-2by3 me-4">
<div class="symbol-label" style="background-image: url('{{ asset($row['image']) }}')"></div>
</div>
<!--end::Symbol-->
<!--begin::Title-->
<div class="d-flex flex-row-fluid flex-wrap align-items-center">
<div class="flex-grow-1 me-2">
<a href="#" class="text-gray-800 fw-bolder text-hover-primary fs-6">{{ $row['title'] }}</a>
<span class="text-muted fw-bold d-block pt-1">{{ $row['text'] }}</span>
</div>
<span class="badge badge-light-{{ $row['color'] }} fs-8 fw-bolder my-2">{{ $row['badge'] }}</span>
</div>
<!--end::Title-->
</div>
<!--end::Item-->
@endforeach
</div>
<!--end::Body-->
</div>
<!--end::List Widget 7-->

View file

@ -0,0 +1,95 @@
<?php
// List items
$listRows = array(
array(
'image' => 'stock/600x400/img-17.jpg',
'title' => 'Cup & Green',
'text' => 'Visually stunning',
'number' => '4.2'
),
array(
'image' => 'stock/600x400/img-10.jpg',
'title' => 'Pink Patterns',
'text' => 'Feminine all around',
'number' => '5.0'
),
array(
'image' => 'stock/600x400/img-1.jpg',
'title' => 'Abstract Art',
'text' => 'The will to capture readers',
'number' => '5.7'
),
array(
'image' => 'stock/600x400/img-9.jpg',
'title' => 'Desserts platter',
'text' => 'Food trends & inspirations',
'number' => '3.7'
)
);
?>
<!--begin::List Widget 8-->
<div class="card {{ $class }}">
<!--begin::Header-->
<div class="card-header align-items-center border-0 mt-4">
<h3 class="card-title align-items-start flex-column">
<span class="fw-bolder text-dark">Latest Products</span>
<span class="text-muted mt-1 fw-bold fs-7">Gifts and more</span>
</h3>
<div class="card-toolbar">
<!--begin::Menu-->
<button type="button" class="btn btn-sm btn-icon btn-color-primary btn-active-light-primary" data-kt-menu-trigger="click" data-kt-menu-placement="bottom-end">
{!! theme()->getSvgIcon("icons/duotune/general/gen024.svg", "svg-icon-2") !!}
</button>
{{ theme()->getView('partials/menus/_menu-3') }}
<!--end::Menu-->
</div>
</div>
<!--end::Header-->
<!--begin::Body-->
<div class="card-body pt-3">
@foreach($listRows as $row)
<!--begin::Item-->
<div class="d-flex align-items-sm-center {{ util()->putIf(next($listRows), 'mb-7') }}">
<!--begin::Symbol-->
<div class="symbol symbol-60px symbol-2by3 me-4">
<div class="symbol-label" style="background-image: url('{{ asset($row['image']) }}')"></div>
</div>
<!--end::Symbol-->
<!--begin::Content-->
<div class="d-flex flex-row-fluid align-items-center flex-wrap my-lg-0 me-2">
<!--begin::Title-->
<div class="flex-grow-1 my-lg-0 my-2 me-2">
<a href="#" class="text-gray-800 fw-bolder text-hover-primary fs-6">{{ $row['title'] }}</a>
<span class="text-muted fw-bold d-block pt-1">{{ $row['text'] }}</span>
</div>
<!--end::Title-->
<!--begin::Section-->
<div class="d-flex align-items-center">
<div class="me-6">
<i class="fa fa-star-half-alt me-1 text-warning fs-5"></i>
<span class="text-gray-800 fw-bolder">{{ $row['number'] }}</span>
</div>
<a href="#" class="btn btn-icon btn-light btn-sm border-0">
{!! theme()->getSvgIcon("icons/duotune/arrows/arr064.svg", "svg-icon-2 svg-icon-primary"); !!}
</a>
</div>
<!--end::Section-->
</div>
<!--end::Content-->
</div>
<!--end::Item-->
@endforeach
</div>
<!--end::Body-->
</div>
<!--end::List Widget 8-->