46 lines
1.2 KiB
HTML
46 lines
1.2 KiB
HTML
title = "childrenCategories"
|
|
url = "/children-categories/:id"
|
|
layout = "master-new-inside"
|
|
is_hidden = 0
|
|
|
|
[CategoryData]
|
|
==
|
|
<?php
|
|
function onStart(){
|
|
$this['catId'] = $this->param('id');
|
|
}
|
|
?>
|
|
==
|
|
{% set obCategory = CategoryData.get(catId) %}
|
|
|
|
{% partial 'new/breadcrumb' secondPage=obCategory.name %}
|
|
|
|
<section class="service-area">
|
|
<div class="container">
|
|
<div class="row">
|
|
|
|
|
|
{% for obCategoryChildren in obCategory.children %}
|
|
|
|
<div class="col-md-4 mt-3">
|
|
<a href="{{ obCategoryChildren.getPageUrl('category-page') }}">
|
|
<div class="service-box d-flex">
|
|
<div class="sr-img" style="background: #e3e7fb !important;border: 2px solid #5777fc;">
|
|
|
|
<img src="{{ obCategory.icon.path }}" alt="">
|
|
|
|
</div>
|
|
<div style="text-align: left;margin-top: auto;margin-bottom: auto;">
|
|
|
|
<h6>{{ obCategoryChildren.name }}</h6>
|
|
|
|
</div>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
</div>
|
|
</section> |