2023-01-24
This commit is contained in:
parent
de4a81a496
commit
1e990e4d43
|
@ -11,7 +11,31 @@ $(function() {
|
||||||
type: "POST",
|
type: "POST",
|
||||||
url: "/act/ajax",
|
url: "/act/ajax",
|
||||||
data: "act=stat_mob&w=" + $(window).width() + "&h=" + $(window).height()
|
data: "act=stat_mob&w=" + $(window).width() + "&h=" + $(window).height()
|
||||||
})
|
});
|
||||||
|
|
||||||
|
|
||||||
|
$.ajax({
|
||||||
|
type:"POST",
|
||||||
|
url:'/act/admin',
|
||||||
|
dataType: 'json',
|
||||||
|
data:"act=getPos",
|
||||||
|
|
||||||
|
success: function(data){
|
||||||
|
data.forEach(function(data) {
|
||||||
|
//alert(data.y);
|
||||||
|
|
||||||
|
$('[data-elem=' + data.elem + ']').css({'top': data.y + 'px'});
|
||||||
|
$('[data-elem=' + data.elem + ']').css({'left': data.x + 'px'});
|
||||||
|
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//success:function(data){/*alert(data)*/}
|
||||||
|
});
|
||||||
|
|
||||||
|
//alert($(['data-elem=zametka']).css());
|
||||||
|
|
||||||
// $("#wid").text(w_sreen);
|
// $("#wid").text(w_sreen);
|
||||||
}
|
}
|
||||||
init();
|
init();
|
||||||
|
|
|
@ -37,7 +37,10 @@
|
||||||
<script src="assets/js/jquery.magnific-popup.min.js"></script>
|
<script src="assets/js/jquery.magnific-popup.min.js"></script>
|
||||||
<link rel="stylesheet" href="assets/css/magnific-popup.css">
|
<link rel="stylesheet" href="assets/css/magnific-popup.css">
|
||||||
<link rel="stylesheet" href="/api/fontawesome/6.2.0/css/all.min.css"> {$plugins}
|
<link rel="stylesheet" href="/api/fontawesome/6.2.0/css/all.min.css"> {$plugins}
|
||||||
|
<link rel="stylesheet" href="//code.jquery.com/ui/1.13.2/themes/base/jquery-ui.css">
|
||||||
|
<script src="https://code.jquery.com/ui/1.13.2/jquery-ui.js"></script>
|
||||||
<script src="assets/js/js.js"></script>
|
<script src="assets/js/js.js"></script>
|
||||||
<script src="/api/modules/{$smarty.const.MOD}/mod.js"></script>
|
<script src="/api/modules/{$smarty.const.MOD}/mod.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -27,6 +27,23 @@ case 'loados':/*загружаем обратную связь со статус
|
||||||
|
|
||||||
//\DB::set('UPDATE `tasks` SET `status`="' . $_POST['status'] . '" WHERE `id` = "' . $_POST['id'] . '"');
|
//\DB::set('UPDATE `tasks` SET `status`="' . $_POST['status'] . '" WHERE `id` = "' . $_POST['id'] . '"');
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
||||||
|
case 'savePos':
|
||||||
|
$id = \DB::getValue("SELECT `id` FROM `admin_el_pos` WHERE `elem`=?", $_POST['elem']);
|
||||||
|
if ($id)
|
||||||
|
\DB::set( "UPDATE `admin_el_pos` SET `x`=?, `y`=? WHERE `elem` = ?", array( $_POST['x'], $_POST['y'], $_POST['elem'] ) );
|
||||||
|
else
|
||||||
|
\DB::add("INSERT INTO `admin_el_pos` (`x`, `y`, `elem`) VALUES(?,?,?)", array( $_POST['x'], $_POST['y'], $_POST['elem'] ));
|
||||||
|
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'getPos':
|
||||||
|
$pos = \DB::getAll("SELECT * FROM `admin_el_pos`");
|
||||||
|
echo \json::to_j($pos);
|
||||||
|
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
|
@ -32,7 +32,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-lg-4">
|
<div class="col-lg-4">
|
||||||
<div class="ibox">
|
<div class="ibox p-3">
|
||||||
<textarea class="form-control" style="min-height: 250px;" id="admin_zametki">{$zametka}</textarea>
|
<textarea class="form-control" style="min-height: 250px;" id="admin_zametki">{$zametka}</textarea>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -32,4 +32,21 @@ $("#clearimg").click(function(event){
|
||||||
data:"act=clearimg",
|
data:"act=clearimg",
|
||||||
success:function(data){ $(this).text(data) }
|
success:function(data){ $(this).text(data) }
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
|
/*
|
||||||
|
$( ".ibox" ).draggable({ //cancel: ".ibox-head, .ibox-body",
|
||||||
|
stop: function() {
|
||||||
|
var offset = $(this).offset();
|
||||||
|
var xPos = offset.left;
|
||||||
|
var yPos = offset.top;
|
||||||
|
$.ajax({
|
||||||
|
type:"POST",
|
||||||
|
url:'/act/admin',
|
||||||
|
data:"act=savePos&elem=" + $(this).data('elem') + "&x=" + xPos + "&y=" + yPos,
|
||||||
|
success:function(data){/*alert(data)}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
ini_set('display_errors', 0 );
|
ini_set('display_errors', 1 );
|
||||||
if ( !$_SESSION['user_id'] ) die ( 'Кыш' );
|
if ( !$_SESSION['user_id'] ) die ( 'Кыш' );
|
||||||
switch( @$_POST['act'] ) {
|
switch( @$_POST['act'] ) {
|
||||||
|
|
||||||
|
@ -64,15 +64,12 @@ switch( @$_POST['act'] ) {
|
||||||
break;
|
break;
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------
|
/* ----------------------------------------------------------------------
|
||||||
05.06.2022
|
16.01.2023
|
||||||
Сохраняем адрес доставки - исправить
|
Сохраняем адрес доставки
|
||||||
---------------------------------------------------------------------- */
|
---------------------------------------------------------------------- */
|
||||||
|
|
||||||
case 'add_adres':
|
case 'add_adres':
|
||||||
unset( $_POST['act'] );
|
$insert_id = \DB::add("INSERT INTO `adres_dostavki` (`user_id`, `gorod`, `street`, `dom`) VALUES (?, ?, ?, ?)", array( $_SESSION['user_id'], $_POST['gorod'], $_POST['street'], $_POST['dom'] ) );
|
||||||
$insert_id = \DB::add("INSERT INTO `adres_dostavki` (`user_id`, `" . $_POST['tip'] . "`) VALUES (?, ?)", array( $_SESSION['user_id'], $_POST['a'] ) );
|
|
||||||
$_POST['user_id'] = $_SESSION['user_id'];
|
|
||||||
$db -> add ( 'adres_dostavki', $_POST );
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------
|
/* ----------------------------------------------------------------------
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
|
|
||||||
]]>
|
]]>
|
||||||
</turbo:content>
|
</turbo:content>
|
||||||
<description>{$rss[go].txt|substr:200}</description>
|
<description>{$rss[go].txt|strip_tags|substr:200}</description>
|
||||||
{if ($rss[go].t)}
|
{if ($rss[go].t)}
|
||||||
<pubDate>{$rss[go].t|date_format:"%d %b %Y %H:%M:%S"} +0500</pubDate>
|
<pubDate>{$rss[go].t|date_format:"%d %b %Y %H:%M:%S"} +0500</pubDate>
|
||||||
<guid>https://{$smarty.server.HTTP_HOST}{if $rss[go].alias}/{$rss[go].alias}.html{else}/page/{$rss[go].id}{/if}</guid>
|
<guid>https://{$smarty.server.HTTP_HOST}{if $rss[go].alias}/{$rss[go].alias}.html{else}/page/{$rss[go].id}{/if}</guid>
|
||||||
|
|
|
@ -30,5 +30,5 @@ $table=mb_substr($_GET['id'], 0, 5);
|
||||||
if ($table=='info-') $table='pages';
|
if ($table=='info-') $table='pages';
|
||||||
$rss=\DB::getAll("SELECT * FROM `" . $table . "` WHERE `status`=1 LIMIT " . $pieces[0] . ", " . $pieces[1] );
|
$rss=\DB::getAll("SELECT * FROM `" . $table . "` WHERE `status`=1 LIMIT " . $pieces[0] . ", " . $pieces[1] );
|
||||||
$smarty->assign('rss', @$rss);
|
$smarty->assign('rss', @$rss);
|
||||||
$smarty->assign('description', @$description);
|
$smarty->assign('description', strip_tags(@$description));
|
||||||
?>
|
?>
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
ini_set('display_errors', 0 );
|
ini_set('display_errors', 0 );
|
||||||
$smarty -> caching = true;
|
$smarty -> caching = false;
|
||||||
$smarty -> cache_lifetime = 2592000;// 86400 - сутки, 2592000 - месяц
|
$smarty -> cache_lifetime = 2592000;// 86400 - сутки, 2592000 - месяц
|
||||||
|
|
||||||
function delhtml ($text) { // ФУНКЦИЯ очистки кода
|
function delhtml ($text) { // ФУНКЦИЯ очистки кода
|
||||||
|
@ -17,7 +17,14 @@ $page = ( $pieces[1] ) ? $pieces[1] : 0; // текущая страница
|
||||||
|
|
||||||
$categoryInfo=\DB::getAll("SELECT * FROM `tovar_category` WHERE `id`=? LIMIT 1", $pieces[0]);
|
$categoryInfo=\DB::getAll("SELECT * FROM `tovar_category` WHERE `id`=? LIMIT 1", $pieces[0]);
|
||||||
$smarty->assign('page_info', $categoryInfo);//получаем инфо о категории
|
$smarty->assign('page_info', $categoryInfo);//получаем инфо о категории
|
||||||
|
|
||||||
$childrenCategory=\DB::getAll("SELECT `id`, `title` FROM `tovar_category` WHERE `status` = 1 AND `category` = ? ORDER BY `title`", $pieces[0] );
|
$childrenCategory=\DB::getAll("SELECT `id`, `title` FROM `tovar_category` WHERE `status` = 1 AND `category` = ? ORDER BY `title`", $pieces[0] );
|
||||||
|
//Если нет дочерних категорий, берем текщие....
|
||||||
|
if (!$childrenCategory){
|
||||||
|
$childrenCategory=\DB::getAll("SELECT `id`, `title` FROM `tovar_category` WHERE `status` = 1 AND `category` = ? ORDER BY `title`", $categoryInfo[0]['category'] );
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
$smarty->assign('list', $childrenCategory);//получаем дочерние категории
|
$smarty->assign('list', $childrenCategory);//получаем дочерние категории
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------
|
/* ----------------------------------------------------------------------
|
||||||
|
@ -35,18 +42,11 @@ $smarty->assign('oblozhka', $mainImg);
|
||||||
|
|
||||||
if ( $pieces[0] ) $catImg=\DB::getValue("SELECT `filename` FROM `tovar_category_img` WHERE `tovar_category_id`=? ORDER BY RANDOM() LIMIT 1", $pieces[0]);
|
if ( $pieces[0] ) $catImg=\DB::getValue("SELECT `filename` FROM `tovar_category_img` WHERE `tovar_category_id`=? ORDER BY RANDOM() LIMIT 1", $pieces[0]);
|
||||||
$smarty -> assign( 'catImg', $catImg );
|
$smarty -> assign( 'catImg', $catImg );
|
||||||
|
|
||||||
$kol = 40; //количество записей для вывода
|
$kol = 40; //количество записей для вывода
|
||||||
$art = ($page * $kol) - $kol; // определяем, с какой записи нам выводить
|
$art = ($page * $kol) - $kol; // определяем, с какой записи нам выводить
|
||||||
|
|
||||||
|
|
||||||
$total = \DB::getValue ( "SELECT COUNT(*) FROM `tovar` WHERE `category` = ? AND `status`=1", $pieces[0] );
|
$total = \DB::getValue ( "SELECT COUNT(*) FROM `tovar` WHERE `category` = ? AND `status`=1", $pieces[0] );
|
||||||
|
|
||||||
|
|
||||||
$str_pag = ceil($total / $kol);
|
$str_pag = ceil($total / $kol);
|
||||||
|
|
||||||
$childrenTovar=\DB::getAll("SELECT `id`, `title` FROM `tovar` WHERE `category`=? AND `status`=1 ORDER BY `title` LIMIT $art, $kol", $pieces[0]);
|
$childrenTovar=\DB::getAll("SELECT `id`, `title` FROM `tovar` WHERE `category`=? AND `status`=1 ORDER BY `title` LIMIT $art, $kol", $pieces[0]);
|
||||||
|
|
||||||
for ($i=0; $i<count($childrenTovar); $i++){
|
for ($i=0; $i<count($childrenTovar); $i++){
|
||||||
$childrenTovar[$i]['cena']=\DB::getValue("SELECT `cena` FROM `tovar_price_history` WHERE `tovar_id`=? ORDER BY `t` DESC LIMIT 1", $childrenTovar[$i]['id']);
|
$childrenTovar[$i]['cena']=\DB::getValue("SELECT `cena` FROM `tovar_price_history` WHERE `tovar_id`=? ORDER BY `t` DESC LIMIT 1", $childrenTovar[$i]['id']);
|
||||||
$childrenTovar[$i]['img']=\DB::getValue("SELECT `filename` FROM `tovar_img` WHERE `tovar_id`=?", $childrenTovar[$i]['id']);
|
$childrenTovar[$i]['img']=\DB::getValue("SELECT `filename` FROM `tovar_img` WHERE `tovar_id`=?", $childrenTovar[$i]['id']);
|
||||||
|
@ -64,8 +64,6 @@ $smarty->assign('Breadcrumb', \core::getBreadcrumb( 'tovar_category', $categoryI
|
||||||
03.01.2023
|
03.01.2023
|
||||||
Пагинатор
|
Пагинатор
|
||||||
---------------------------------------------------------------------- */
|
---------------------------------------------------------------------- */
|
||||||
|
|
||||||
|
|
||||||
$paginator='<nav aria-label="123" style="margin-top: 40px; margin-bottom: 40px;"><ul class="pagination">';
|
$paginator='<nav aria-label="123" style="margin-top: 40px; margin-bottom: 40px;"><ul class="pagination">';
|
||||||
for ($i = 1; $i <= $str_pag; $i++){
|
for ($i = 1; $i <= $str_pag; $i++){
|
||||||
if ($i==$page)
|
if ($i==$page)
|
||||||
|
|
|
@ -1,5 +1,34 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
\DB::set("UPDATE `tovar` SET `category`=116, `status`=1 WHERE `title` LIKE 'Скоросшивател%'");
|
||||||
|
\DB::set("UPDATE `tovar` SET `category`=96, `status`=1 WHERE `title` LIKE 'Салфетка влажная%'");
|
||||||
|
\DB::set("UPDATE `tovar` SET `category`=104, `status`=1 WHERE `title` LIKE 'Бумага XEROX%'");
|
||||||
|
\DB::set("UPDATE `tovar` SET `category`=104, `status`=1 WHERE `title` LIKE 'Бумага офисная%'");
|
||||||
|
\DB::set("UPDATE `tovar` SET `category`=104, `status`=1 WHERE `title` LIKE 'Бумага COLOR COPY%'");
|
||||||
|
\DB::set("UPDATE `tovar` SET `category`=105, `status`=1 WHERE `title` LIKE 'Бумага для акварели%'");
|
||||||
|
\DB::set("UPDATE `tovar` SET `category`=106, `status`=1 WHERE `title` LIKE 'Бумага для пастели%'");
|
||||||
|
\DB::set("UPDATE `tovar` SET `category`=107, `status`=1 WHERE `title` LIKE 'Бумага для рисования%'");
|
||||||
|
\DB::set("UPDATE `tovar` SET `category`=108, `status`=1 WHERE `title` LIKE 'Ватман %'");
|
||||||
|
\DB::set("UPDATE `tovar` SET `category`=109, `status`=1 WHERE `title` LIKE 'Грамота %'");
|
||||||
|
\DB::set("UPDATE `tovar` SET `category`=110, `status`=1 WHERE `title` LIKE 'Дневник %'");
|
||||||
|
\DB::set("UPDATE `tovar` SET `category`=111, `status`=1 WHERE `title` LIKE 'Еженедельник %'");
|
||||||
|
\DB::set("UPDATE `tovar` SET `category`=112, `status`=1 WHERE `title` LIKE 'Закладка для книг%'");
|
||||||
|
\DB::set("UPDATE `tovar` SET `category`=112, `status`=1 WHERE `title` LIKE 'Закладки для книг%'");
|
||||||
|
\DB::set("UPDATE `tovar` SET `category`=112, `status`=1 WHERE `title` LIKE 'Закладки клейкие%'");
|
||||||
|
\DB::set("UPDATE `tovar` SET `category`=113, `status`=1 WHERE `title` LIKE 'Книга%учета %'");
|
||||||
|
\DB::set("UPDATE `tovar` SET `category`=114, `status`=1 WHERE `title` LIKE 'Книжка%раскраска%'");
|
||||||
|
\DB::set("UPDATE `tovar` SET `category`=114, `status`=1 WHERE `title` LIKE 'Раскраска%-анти%'");
|
||||||
|
\DB::set("UPDATE `tovar` SET `category`=115, `status`=1 WHERE `title` LIKE 'Конверты %'");
|
||||||
|
\DB::set("UPDATE `tovar` SET `category`=115, `status`=1 WHERE `title` LIKE 'Конверт%пакет%'");
|
||||||
|
\DB::set("UPDATE `tovar` SET `category`=19, `status`=1 WHERE `title` LIKE 'Папка для бумаг%'");
|
||||||
|
\DB::set("UPDATE `tovar` SET `category`=19, `status`=1 WHERE `title` LIKE 'Папка для акварели%'");
|
||||||
|
\DB::set("UPDATE `tovar` SET `category`=19, `status`=1 WHERE `title` LIKE 'Папка для пастели%'");
|
||||||
|
\DB::set("UPDATE `tovar` SET `category`=19, `status`=1 WHERE `title` LIKE 'Папка для черче%'");
|
||||||
|
\DB::set("UPDATE `tovar` SET `category`=19, `status`=1 WHERE `title` LIKE 'Папка для рисовани%'");
|
||||||
|
\DB::set("UPDATE `tovar` SET `category`=19, `status`=1 WHERE `title` LIKE 'Папка для эск%'");
|
||||||
|
\DB::set("UPDATE `tovar` SET `category`=19, `status`=1 WHERE `title` LIKE 'Папка%обложка%'");
|
||||||
|
\DB::set("UPDATE `tovar` SET `category`=19, `status`=1 WHERE `title` LIKE 'Папка%планшет%'");
|
||||||
|
//echo "UPDATE `tovar` SET `category`=104, `status`=1 WHERE `title` LIKE 'Бумага COLOR COPY%'";
|
||||||
/*
|
/*
|
||||||
|
|
||||||
\DB::set("UPDATE `tovar` SET `category`=89, `status`=1 WHERE `title` LIKE 'Альбом для акварели%'");
|
\DB::set("UPDATE `tovar` SET `category`=89, `status`=1 WHERE `title` LIKE 'Альбом для акварели%'");
|
||||||
|
|
|
@ -45,3 +45,6 @@
|
||||||
46.165.16.184;1673710126;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/15576;
|
46.165.16.184;1673710126;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/15576;
|
||||||
46.165.16.184;1673711562;Firefox 10+;Linux;https://tk-ligat.ru/;
|
46.165.16.184;1673711562;Firefox 10+;Linux;https://tk-ligat.ru/;
|
||||||
46.165.16.184;1673712736;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/17030;
|
46.165.16.184;1673712736;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/17030;
|
||||||
|
46.165.16.184;1673714443;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/12-0.html;
|
||||||
|
46.165.16.184;1673714448;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/94-1.html;
|
||||||
|
46.165.16.184;1673714465;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/94-6.html;
|
||||||
|
|
|
|
@ -0,0 +1,164 @@
|
||||||
|
46.165.16.184;1673772790;Firefox 10+;Linux;https://tk-ligat.ru/login/;
|
||||||
|
46.165.16.184;1673785758;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/94-6.html;
|
||||||
|
46.165.16.184;1673786080;Firefox 10+;Linux;https://tk-ligat.ru/;
|
||||||
|
46.165.16.184;1673786129;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673786248;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/930;
|
||||||
|
46.165.16.184;1673786272;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673786275;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673786307;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673786310;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673786313;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673786315;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673786324;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/902;
|
||||||
|
46.165.16.184;1673786361;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673786369;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673786372;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673786375;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673786389;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673786391;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673786442;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673786446;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673786452;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/903;
|
||||||
|
46.165.16.184;1673786482;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/903;
|
||||||
|
46.165.16.184;1673786519;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673786570;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673786574;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673786647;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673786649;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673786652;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673786665;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673786667;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673786714;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673786716;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673786789;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673786791;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673786805;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-4.html;
|
||||||
|
46.165.16.184;1673786847;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-4.html;
|
||||||
|
46.165.16.184;1673786850;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-4.html;
|
||||||
|
46.165.16.184;1673786944;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-4.html;
|
||||||
|
46.165.16.184;1673786947;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-4.html;
|
||||||
|
46.165.16.184;1673787012;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-4.html;
|
||||||
|
46.165.16.184;1673787016;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-4.html;
|
||||||
|
46.165.16.184;1673787078;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-4.html;
|
||||||
|
46.165.16.184;1673787080;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-4.html;
|
||||||
|
46.165.16.184;1673787093;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-5.html;
|
||||||
|
46.165.16.184;1673787162;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-5.html;
|
||||||
|
46.165.16.184;1673787167;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-5.html;
|
||||||
|
46.165.16.184;1673787184;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-5.html;
|
||||||
|
46.165.16.184;1673787186;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-5.html;
|
||||||
|
46.165.16.184;1673787200;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-6.html;
|
||||||
|
46.165.16.184;1673787231;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-7.html;
|
||||||
|
46.165.16.184;1673787293;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-7.html;
|
||||||
|
46.165.16.184;1673787296;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-7.html;
|
||||||
|
46.165.16.184;1673787319;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-7.html;
|
||||||
|
46.165.16.184;1673787321;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-7.html;
|
||||||
|
46.165.16.184;1673787349;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-8.html;
|
||||||
|
46.165.16.184;1673787385;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/127;
|
||||||
|
46.165.16.184;1673787413;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-8.html;
|
||||||
|
46.165.16.184;1673787416;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-8.html;
|
||||||
|
46.165.16.184;1673787428;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-9.html;
|
||||||
|
46.165.16.184;1673787476;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-9.html;
|
||||||
|
46.165.16.184;1673787479;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-9.html;
|
||||||
|
46.165.16.184;1673787496;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-8.html;
|
||||||
|
46.165.16.184;1673787520;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-8.html;
|
||||||
|
46.165.16.184;1673787523;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-8.html;
|
||||||
|
46.165.16.184;1673787525;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-8.html;
|
||||||
|
46.165.16.184;1673787534;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-8.html;
|
||||||
|
46.165.16.184;1673787536;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-8.html;
|
||||||
|
46.165.16.184;1673787549;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-11.html;
|
||||||
|
46.165.16.184;1673787573;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-14.html;
|
||||||
|
46.165.16.184;1673787721;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-14.html;
|
||||||
|
46.165.16.184;1673787724;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-14.html;
|
||||||
|
46.165.16.184;1673787746;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-14.html;
|
||||||
|
46.165.16.184;1673787748;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-14.html;
|
||||||
|
46.165.16.184;1673787764;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-14.html;
|
||||||
|
46.165.16.184;1673787770;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-14.html;
|
||||||
|
46.165.16.184;1673787811;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-14.html;
|
||||||
|
46.165.16.184;1673787813;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-14.html;
|
||||||
|
46.165.16.184;1673787852;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-14.html;
|
||||||
|
46.165.16.184;1673787855;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-14.html;
|
||||||
|
46.165.16.184;1673787858;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-14.html;
|
||||||
|
46.165.16.184;1673787879;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-14.html;
|
||||||
|
46.165.16.184;1673787881;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-14.html;
|
||||||
|
46.165.16.184;1673787893;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-15.html;
|
||||||
|
46.165.16.184;1673787908;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-16.html;
|
||||||
|
46.165.16.184;1673787944;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-16.html;
|
||||||
|
46.165.16.184;1673787947;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-16.html;
|
||||||
|
46.165.16.184;1673787957;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-17.html;
|
||||||
|
46.165.16.184;1673787966;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-18.html;
|
||||||
|
46.165.16.184;1673788031;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-18.html;
|
||||||
|
46.165.16.184;1673788034;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-18.html;
|
||||||
|
46.165.16.184;1673788049;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-19.html;
|
||||||
|
46.165.16.184;1673788165;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-19.html;
|
||||||
|
46.165.16.184;1673788170;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-19.html;
|
||||||
|
46.165.16.184;1673788179;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-20.html;
|
||||||
|
46.165.16.184;1673788308;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-20.html;
|
||||||
|
46.165.16.184;1673788339;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-20.html;
|
||||||
|
46.165.16.184;1673788383;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-20.html;
|
||||||
|
46.165.16.184;1673788436;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-20.html;
|
||||||
|
46.165.16.184;1673789053;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/12-1.html;
|
||||||
|
46.165.16.184;1673789071;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/8-1.html;
|
||||||
|
46.165.16.184;1673789090;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/8-2.html;
|
||||||
|
46.165.16.184;1673789343;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/8-2.html;
|
||||||
|
46.165.16.184;1673789448;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/8-2.html;
|
||||||
|
46.165.16.184;1673789460;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/12-1.html;
|
||||||
|
46.165.16.184;1673789492;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/12-1.html;
|
||||||
|
46.165.16.184;1673789564;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/12-1.html;
|
||||||
|
46.165.16.184;1673789575;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/75-1.html;
|
||||||
|
46.165.16.184;1673789621;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/75-1.html;
|
||||||
|
46.165.16.184;1673789648;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/75-1.html;
|
||||||
|
46.165.16.184;1673789784;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/75-1.html;
|
||||||
|
46.165.16.184;1673789815;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/1916;
|
||||||
|
46.165.16.184;1673789912;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/75-1.html;
|
||||||
|
46.165.16.184;1673789926;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/75-1.html;
|
||||||
|
46.165.16.184;1673789930;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/75-1.html;
|
||||||
|
46.165.16.184;1673790244;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/75-1.html;
|
||||||
|
46.165.16.184;1673790247;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/75-1.html;
|
||||||
|
46.165.16.184;1673790260;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/75-1.html;
|
||||||
|
46.165.16.184;1673790611;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/75-1.html;
|
||||||
|
46.165.16.184;1673790633;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/3403;
|
||||||
|
46.165.16.184;1673790682;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/3403;
|
||||||
|
46.165.16.184;1673790713;Firefox 10+;Linux;https://tk-ligat.ru/;
|
||||||
|
46.165.16.184;1673790780;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/951;
|
||||||
|
46.165.16.184;1673790854;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/951;
|
||||||
|
46.165.16.184;1673790858;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/951;
|
||||||
|
46.165.16.184;1673790864;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673790864;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/951;
|
||||||
|
46.165.16.184;1673790866;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/951;
|
||||||
|
46.165.16.184;1673790868;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/951;
|
||||||
|
46.165.16.184;1673790870;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673790871;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/951;
|
||||||
|
46.165.16.184;1673790892;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/951;
|
||||||
|
46.165.16.184;1673790922;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/951;
|
||||||
|
46.165.16.184;1673790923;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673790928;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673790930;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/951;
|
||||||
|
46.165.16.184;1673792115;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673792118;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/951;
|
||||||
|
46.165.16.184;1673792124;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673792152;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/951;
|
||||||
|
46.165.16.184;1673792167;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/951;
|
||||||
|
46.165.16.184;1673792186;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/5-1.html;
|
||||||
|
46.165.16.184;1673792192;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/61-1.html;
|
||||||
|
46.165.16.184;1673792305;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/61-1.html;
|
||||||
|
46.165.16.184;1673792321;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673792327;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/3559;
|
||||||
|
46.165.16.184;1673792332;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673792343;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/12-1.html;
|
||||||
|
46.165.16.184;1673792361;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/97-1.html;
|
||||||
|
46.165.16.184;1673792403;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/97-2.html;
|
||||||
|
46.165.16.184;1673799563;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673799568;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/11-1.html;
|
||||||
|
46.165.16.184;1673799572;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/52-1.html;
|
||||||
|
46.165.16.184;1673799576;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/52-1.html;
|
||||||
|
46.165.16.184;1673799582;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673799585;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/13-1.html;
|
||||||
|
46.165.16.184;1673799590;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/88-1.html;
|
||||||
|
46.165.16.184;1673799604;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/80-1.html;
|
||||||
|
46.165.16.184;1673799639;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/80-1.html;
|
||||||
|
46.165.16.184;1673799646;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/79-1.html;
|
||||||
|
46.165.16.184;1673799652;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/71-1.html;
|
||||||
|
46.165.16.184;1673799670;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/71-2.html;
|
||||||
|
46.165.16.184;1673799683;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/88-1.html;
|
||||||
|
46.165.16.184;1673799722;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/88-1.html;
|
||||||
|
46.165.16.184;1673800899;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/18-1.html;
|
|
|
@ -0,0 +1,33 @@
|
||||||
|
46.165.16.184;1673883143;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/18-1.html;
|
||||||
|
46.165.16.184;1673883149;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/10312;
|
||||||
|
46.165.16.184;1673883157;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/18-0.html;
|
||||||
|
46.165.16.184;1673887619;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/74-1.html;
|
||||||
|
46.165.16.184;1673887658;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/82-1.html;
|
||||||
|
46.165.16.184;1673887696;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/14-1.html;
|
||||||
|
46.165.16.184;1673887723;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/14-4.html;
|
||||||
|
46.165.16.184;1673887742;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/8-1.html;
|
||||||
|
46.165.16.184;1673887768;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/16-1.html;
|
||||||
|
46.165.16.184;1673887794;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/16-2.html;
|
||||||
|
46.165.16.184;1673887808;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/63-1.html;
|
||||||
|
46.165.16.184;1673887828;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/63-2.html;
|
||||||
|
46.165.16.184;1673887851;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/63-3.html;
|
||||||
|
46.165.16.184;1673887862;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/76-1.html;
|
||||||
|
46.165.16.184;1673887877;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/11257;
|
||||||
|
46.165.16.184;1673887894;Firefox 10+;Linux;https://tk-ligat.ru/new_find/;
|
||||||
|
46.165.16.184;1673887967;Firefox 10+;Linux;https://tk-ligat.ru/new_find/;
|
||||||
|
46.165.16.184;1673888000;Firefox 10+;Linux;https://tk-ligat.ru/new_find/;
|
||||||
|
46.165.16.184;1673888032;Firefox 10+;Linux;https://tk-ligat.ru/new_find/;
|
||||||
|
46.165.16.184;1673888088;Firefox 10+;Linux;https://tk-ligat.ru/new_find/;
|
||||||
|
46.165.16.184;1673888380;Firefox 10+;Linux;https://tk-ligat.ru/;
|
||||||
|
46.165.16.184;1673888516;Firefox 10+;Linux;https://tk-ligat.ru/;
|
||||||
|
46.165.16.184;1673888556;Firefox 10+;Linux;https://tk-ligat.ru/;
|
||||||
|
46.165.16.184;1673888566;Firefox 10+;Linux;https://tk-ligat.ru/;
|
||||||
|
46.165.16.184;1673888612;Firefox 10+;Linux;https://tk-ligat.ru/;
|
||||||
|
46.165.16.184;1673888721;Firefox 10+;Linux;https://tk-ligat.ru/;
|
||||||
|
46.165.16.184;1673888809;Firefox 10+;Linux;https://tk-ligat.ru/lk/;
|
||||||
|
46.165.16.184;1673889239;Firefox 10+;Linux;https://tk-ligat.ru/lk/;
|
||||||
|
46.165.16.184;1673889251;Firefox 10+;Linux;https://tk-ligat.ru/lk/;
|
||||||
|
46.165.16.184;1673889389;Firefox 10+;Linux;https://tk-ligat.ru/lk/;
|
||||||
|
46.165.16.184;1673889838;Firefox 10+;Linux;https://tk-ligat.ru/lk/;
|
||||||
|
46.165.16.184;1673889866;Firefox 10+;Linux;https://tk-ligat.ru/lk/;
|
||||||
|
46.165.16.184;1673889873;Firefox 10+;Linux;https://tk-ligat.ru/;
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
62.109.4.125;1673962256;Firefox 30+;Windows;https://tk-ligat.ru/;
|
||||||
|
185.188.183.179;1673962274;MSIE 8.0;Windows;https://tk-ligat.ru/;
|
||||||
|
31.173.100.244;1673962713;Firefox 10+;Linux;https://tk-ligat.ru/;
|
||||||
|
46.165.16.184;1673980476;Chrome 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1673980481;Chrome 10+;Linux;https://tk-ligat.ru/tovar_cat/1-1.html;
|
||||||
|
46.165.16.184;1673980486;Chrome 10+;Linux;https://tk-ligat.ru/tovar_cat/4-1.html;
|
||||||
|
46.165.16.184;1673980536;Chrome 10+;Linux;https://tk-ligat.ru/tovar_cat/4-1.html;
|
||||||
|
46.165.16.184;1673980539;Chrome 10+;Linux;https://tk-ligat.ru/tovar_cat/96-1.html;
|
||||||
|
46.165.16.184;1673980551;Chrome 10+;Linux;https://tk-ligat.ru/tovar_cat/96-1.html;
|
||||||
|
46.165.16.184;1673980561;Chrome 10+;Linux;https://tk-ligat.ru/tovar_cat/96-1.html;
|
||||||
|
46.165.16.184;1673980565;Chrome 10+;Linux;https://tk-ligat.ru/tovar_cat/2-1.html;
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
46.165.16.184;1674056904;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1674056924;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1674056930;Firefox 10+;Linux;https://tk-ligat.ru/new_find/;
|
||||||
|
46.165.16.184;1674056939;Firefox 10+;Linux;https://tk-ligat.ru/tovar_show/21734;
|
||||||
|
80.80.108.36;1674057919;Safari 10+;iPhone;http://webspros.ru/chat.php?invite=mob&member=tk-ligat.ru&pg=16&check=ok;
|
||||||
|
80.80.108.36;1674057989;Safari 10+;iPhone;http://webspros.ru/chat.php?invite=mob&member=tk-ligat.ru&pg=16&check=ok;
|
|
|
@ -0,0 +1,46 @@
|
||||||
|
185.149.41.35;1674100820;Firefox 10+;Windows;https://tk-ligat.ru/;
|
||||||
|
46.165.49.31;1674114983;Firefox 10+;Windows;https://tk-ligat.ru/;
|
||||||
|
85.208.222.24;1674115469;Chrome 10+;Linux;https://tk-ligat.ru/;
|
||||||
|
178.46.76.15;1674115990;Chrome 10+;Windows;https://tk-ligat.ru/;
|
||||||
|
178.46.76.15;1674116003;Chrome 10+;Windows;https://tk-ligat.ru/;
|
||||||
|
178.46.76.15;1674116019;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
178.46.76.15;1674116026;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/5-1.html;
|
||||||
|
178.46.76.15;1674116034;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/51-1.html;
|
||||||
|
178.46.76.15;1674116041;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/72-1.html;
|
||||||
|
178.46.76.15;1674116054;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/72-2.html;
|
||||||
|
178.46.76.15;1674116065;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/61-1.html;
|
||||||
|
178.46.76.15;1674116086;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
178.46.76.15;1674116093;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/7-1.html;
|
||||||
|
178.46.76.15;1674116096;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/67-1.html;
|
||||||
|
178.46.76.15;1674116121;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
178.46.76.15;1674116130;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/10-1.html;
|
||||||
|
178.46.76.15;1674116137;Chrome 10+;Windows;https://tk-ligat.ru/;
|
||||||
|
178.46.76.15;1674116165;Chrome 10+;Windows;https://tk-ligat.ru/;
|
||||||
|
178.46.76.15;1674116169;Chrome 10+;Windows;https://tk-ligat.ru/;
|
||||||
|
178.46.76.15;1674116191;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
178.46.76.15;1674116195;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/1-1.html;
|
||||||
|
178.46.76.15;1674116198;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/3-1.html;
|
||||||
|
178.46.76.15;1674116218;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
||||||
|
178.46.76.15;1674116233;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
||||||
|
178.46.76.15;1674116246;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
||||||
|
178.46.76.15;1674116255;Chrome 10+;Windows;https://tk-ligat.ru/cart/;
|
||||||
|
178.46.76.15;1674121497;Chrome 10+;Windows;https://tk-ligat.ru/;
|
||||||
|
178.46.76.15;1674121505;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
178.46.76.15;1674121509;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/5-1.html;
|
||||||
|
178.46.76.15;1674121515;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/50-1.html;
|
||||||
|
178.46.76.15;1674121520;Chrome 10+;Windows;https://tk-ligat.ru/;
|
||||||
|
178.46.76.15;1674121525;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
178.46.76.15;1674121538;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/1-1.html;
|
||||||
|
178.46.76.15;1674121542;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/2-1.html;
|
||||||
|
178.46.76.15;1674121579;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/4-1.html;
|
||||||
|
178.46.76.15;1674121606;Chrome 10+;Windows;https://tk-ligat.ru/;
|
||||||
|
178.46.76.15;1674121617;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
178.46.76.15;1674121621;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/7-1.html;
|
||||||
|
178.46.76.15;1674121628;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/41-1.html;
|
||||||
|
178.46.76.15;1674121652;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/67-1.html;
|
||||||
|
178.46.76.15;1674121655;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/54-1.html;
|
||||||
|
178.46.76.15;1674121665;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
178.46.76.15;1674121671;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/13-1.html;
|
||||||
|
178.46.76.15;1674121676;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/88-1.html;
|
||||||
|
178.46.76.15;1674121697;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/60-1.html;
|
||||||
|
79.173.90.222;1674138991;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/469;
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
95.161.221.3;1674174526;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
88.83.200.201;1674196620;Chrome 10+;Windows;https://tk-ligat.ru/login/;
|
||||||
|
46.165.49.31;1674209575;Firefox 10+;Windows;https://tk-ligat.ru/;
|
||||||
|
80.80.108.36;1674214163;Chrome 10+;Windows;http://webspros.ru/chat.php?invite=pc&member=tk-ligat.ru&pg=21&check=ok;
|
||||||
|
80.80.108.36;1674214240;Chrome 10+;Windows;http://webspros.ru/chat.php?invite=pc&member=tk-ligat.ru&pg=21&check=ok;
|
||||||
|
37.204.2.249;1674227272;Chrome 10+;Windows;https://tk-ligat.ru/;
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
91.219.190.226;1674264367;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/469;
|
||||||
|
79.126.15.76;1674264369;Chrome 10+;Windows;https://tk-ligat.ru/login/;
|
||||||
|
62.210.125.157;1674272661;Firefox 10+;Windows;https://tk-ligat.ru/;
|
||||||
|
62.210.125.157;1674272668;Firefox 10+;Windows;https://tk-ligat.ru/;
|
||||||
|
95.29.225.122;1674282369;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1674282934;Chrome 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1674282939;Chrome 10+;Linux;https://tk-ligat.ru/tovar_cat/1-1.html;
|
||||||
|
46.165.16.184;1674282946;Chrome 10+;Linux;https://tk-ligat.ru/tovar_cat/2-1.html;
|
||||||
|
46.165.16.184;1674284240;Chrome 10+;Linux;https://tk-ligat.ru/tovar_cat/2-1.html;
|
||||||
|
46.165.16.184;1674305263;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
46.165.16.184;1674305268;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/7-1.html;
|
||||||
|
46.165.16.184;1674306390;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/54-1.html;
|
||||||
|
46.165.16.184;1674306393;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/67-1.html;
|
||||||
|
46.165.16.184;1674306401;Firefox 10+;Linux;https://tk-ligat.ru/tovar_cat/41-1.html;
|
||||||
|
95.161.221.27;1674315374;Chrome 10+;Windows;https://tk-ligat.ru/;
|
|
|
@ -0,0 +1,42 @@
|
||||||
|
31.28.104.194;1674394549;Chrome 10+;Windows;https://tk-ligat.ru/;
|
||||||
|
31.28.104.194;1674394560;Chrome 10+;Windows;https://tk-ligat.ru/cart/;
|
||||||
|
31.28.104.194;1674394568;Chrome 10+;Windows;https://tk-ligat.ru/;
|
||||||
|
31.28.104.194;1674394594;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
||||||
|
31.28.104.194;1674394713;Chrome 10+;Windows;https://tk-ligat.ru/tovar_show/21152;
|
||||||
|
31.28.104.194;1674394728;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
||||||
|
31.28.104.194;1674394777;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
||||||
|
31.28.104.194;1674394834;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
||||||
|
31.28.104.194;1674394987;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
||||||
|
31.28.104.194;1674395076;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
||||||
|
31.28.104.194;1674395161;Chrome 10+;Windows;https://tk-ligat.ru/tovar_show/23739;
|
||||||
|
31.28.104.194;1674395215;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
||||||
|
31.28.104.194;1674395229;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
||||||
|
31.28.104.194;1674395458;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
||||||
|
31.28.104.194;1674395639;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
||||||
|
31.28.104.194;1674395694;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
||||||
|
31.28.104.194;1674395737;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
||||||
|
31.28.104.194;1674395907;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
||||||
|
31.28.104.194;1674396265;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
||||||
|
31.28.104.194;1674396281;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
||||||
|
31.28.104.194;1674396360;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
||||||
|
31.28.104.194;1674396401;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
||||||
|
31.28.104.194;1674396460;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
||||||
|
31.28.104.194;1674396618;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
||||||
|
31.28.104.194;1674396722;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
||||||
|
31.28.104.194;1674396775;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
||||||
|
31.28.104.194;1674396979;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
||||||
|
31.28.104.194;1674397128;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
||||||
|
31.28.104.194;1674397159;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/0-1.html;
|
||||||
|
31.28.104.194;1674397184;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/6-1.html;
|
||||||
|
31.28.104.194;1674397192;Chrome 10+;Windows;https://tk-ligat.ru/tovar_cat/13-1.html;
|
||||||
|
31.28.104.194;1674397220;Chrome 10+;Windows;https://tk-ligat.ru/;
|
||||||
|
31.28.104.194;1674397444;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
||||||
|
31.28.104.194;1674397811;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
||||||
|
31.28.104.194;1674397835;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
||||||
|
31.28.104.194;1674397843;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
||||||
|
31.28.104.194;1674397862;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
||||||
|
31.28.104.194;1674398139;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
||||||
|
31.28.104.194;1674398613;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
||||||
|
31.28.104.194;1674398955;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
||||||
|
31.28.104.194;1674399119;Chrome 10+;Windows;https://tk-ligat.ru/;
|
||||||
|
31.28.104.194;1674399138;Chrome 10+;Windows;https://tk-ligat.ru/new_find/;
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
80.80.108.36;1674484938;Chrome 80+;Linux;http://webspros.ru/chat.php?invite=mob&member=tk-ligat.ru&pg=16&check=ok;
|
||||||
|
80.80.108.36;1674485009;Chrome 80+;Linux;http://webspros.ru/chat.php?invite=mob&member=tk-ligat.ru&pg=16&check=ok;
|
|
|
@ -1 +1 @@
|
||||||
1673374412
|
1673980477
|
|
|
@ -1,6 +1,7 @@
|
||||||
1673298000;7;1;2;
|
1673298000;10;1;3;
|
||||||
1657832400;2;2;2;
|
1657832400;2;2;2;
|
||||||
1662411600;1;1;1;
|
1662411600;1;1;1;
|
||||||
|
1673643600;50;3;3;
|
||||||
1664571600;2;2;2;
|
1664571600;2;2;2;
|
||||||
1660338000;1;1;1;
|
1660338000;1;1;1;
|
||||||
1662584400;2;2;2;
|
1662584400;2;2;2;
|
||||||
|
@ -31,10 +32,13 @@
|
||||||
1672434000;50;2;2;
|
1672434000;50;2;2;
|
||||||
1656968400;15;4;4;
|
1656968400;15;4;4;
|
||||||
1672088400;240;3;4;
|
1672088400;240;3;4;
|
||||||
|
1673816400;33;1;1;
|
||||||
1657400400;2;2;2;
|
1657400400;2;2;2;
|
||||||
|
1673384400;66;3;3;
|
||||||
1660078800;1;1;1;
|
1660078800;1;1;1;
|
||||||
1660165200;2;2;2;
|
1660165200;2;2;2;
|
||||||
1657141200;15;4;4;
|
1657141200;15;4;4;
|
||||||
|
1673902800;3;3;3;
|
||||||
1657746000;2;2;2;
|
1657746000;2;2;2;
|
||||||
1671829200;45;4;3;
|
1671829200;45;4;3;
|
||||||
1665954000;2;1;1;
|
1665954000;2;1;1;
|
||||||
|
@ -88,6 +92,7 @@
|
||||||
1656450000;2;2;2;
|
1656450000;2;2;2;
|
||||||
1658782800;3;3;2;
|
1658782800;3;3;2;
|
||||||
1672693200;147;4;8;
|
1672693200;147;4;8;
|
||||||
|
1673557200;2;1;1;
|
||||||
1663102800;1;1;1;
|
1663102800;1;1;1;
|
||||||
1659474000;1;1;1;
|
1659474000;1;1;1;
|
||||||
1660683600;15;4;4;
|
1660683600;15;4;4;
|
||||||
|
@ -95,6 +100,7 @@
|
||||||
1656190800;7;1;1;
|
1656190800;7;1;1;
|
||||||
1663534800;269;5;5;
|
1663534800;269;5;5;
|
||||||
1660942800;1;1;1;
|
1660942800;1;1;1;
|
||||||
|
1673470800;12;4;2;
|
||||||
1665781200;16;13;5;
|
1665781200;16;13;5;
|
||||||
1671656400;8;5;4;
|
1671656400;8;5;4;
|
||||||
1661115600;1;1;1;
|
1661115600;1;1;1;
|
||||||
|
@ -108,6 +114,7 @@
|
||||||
1673038800;61;1;5;
|
1673038800;61;1;5;
|
||||||
1663016400;3;3;3;
|
1663016400;3;3;3;
|
||||||
1665694800;2;2;2;
|
1665694800;2;2;2;
|
||||||
|
1673730000;164;1;1;
|
||||||
1665349200;3;2;2;
|
1665349200;3;2;2;
|
||||||
1658523600;2;2;2;
|
1658523600;2;2;2;
|
||||||
1666213200;3;1;1;
|
1666213200;3;1;1;
|
||||||
|
|
|
Binary file not shown.
|
@ -3,7 +3,7 @@
|
||||||
Настройки подключения к БД
|
Настройки подключения к БД
|
||||||
*/
|
*/
|
||||||
$db['type']='mysql';
|
$db['type']='mysql';
|
||||||
$db['host']='yurecnt.ru';
|
$db['host']='localhost';
|
||||||
$db['db']='p006';
|
$db['db']='p006';
|
||||||
$db['user']='admin';
|
$db['user']='admin';
|
||||||
$db['password']='32143214';
|
$db['password']='32143214';
|
||||||
|
|
|
@ -30,13 +30,18 @@
|
||||||
|
|
||||||
<!-- End Logo -->
|
<!-- End Logo -->
|
||||||
<!-- Start Header Menu -->
|
<!-- Start Header Menu -->
|
||||||
<div class="header-menu">
|
<div class="header-menu text-right">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
{if $smarty.session.user_id}
|
||||||
|
<a href="/lk/" style="font-size: 9pt; color: gray;" class="text-right">Личный кабинет</a>
|
||||||
|
{if $smarty.session.dostup=='a'}
|
||||||
|
<a href="/lk/" style="font-size: 9pt; color: gray;" class="text-right">Админка</a>
|
||||||
|
{/if}
|
||||||
|
{else}
|
||||||
|
<a href="/lk/" style="font-size: 9pt; color: gray;" class="text-right">Войти</a>
|
||||||
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
<!-- End Header Menu -->
|
<!-- End Header Menu -->
|
||||||
<!-- Start Wishlist-AddCart -->
|
<!-- Start Wishlist-AddCart -->
|
||||||
|
@ -107,27 +112,27 @@
|
||||||
<div class="col-xl-9 col-lg-9">
|
<div class="col-xl-9 col-lg-9">
|
||||||
|
|
||||||
<nav style="margin: 0px; padding: 0px;">
|
<nav style="margin: 0px; padding: 0px;">
|
||||||
<ul class="header__nav" style="background-color: #2D9CEE; border-radius: 20px; padding-left: 20px; padding-bottom: 3px; padding-top: 3px;">
|
<ul class="header__nav" style="background-color: #2D9CEE; border-radius: 10px; padding-left: 20px; padding-bottom: 3px; padding-top: 3px;">
|
||||||
|
|
||||||
{* п1 *}
|
{* п1 *}
|
||||||
<li class="header__nav-item pos-relative" style="border-right: 1px solif #fff;">
|
<li class="header__nav-item pos-relative" style="border-right: 1px solif #fff;">
|
||||||
<a href="/" class="header__nav-link" style="color:#fff;line-height:42px;">Главная</a>
|
<a href="/" class="header__nav-link" style="color:#fff;line-height:42px;height: 45px;">Главная</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
{* п1 *}
|
{* п1 *}
|
||||||
<li class="header__nav-item pos-relative" style="border-right: 1px solif #fff;">
|
<li class="header__nav-item pos-relative" style="border-right: 1px solif #fff;">
|
||||||
<a href="/" class="header__nav-link" style="color:#fff;line-height:42px;">О копании</a>
|
<a href="/" class="header__nav-link" style="color:#fff;line-height:42px; height: 45px;">О компании</a>
|
||||||
</li>
|
</li>
|
||||||
{* п1 *}
|
{* п1 *}
|
||||||
<li class="header__nav-item pos-relative" style="border-right: 1px solif #fff;">
|
<li class="header__nav-item pos-relative" style="border-right: 1px solif #fff;">
|
||||||
<a href="/" class="header__nav-link" style="color:#fff;line-height:42px;">Доставка</a>
|
<a href="/" class="header__nav-link" style="color:#fff;line-height:42px;height: 45px;">Доставка</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="header__nav-item pos-relative" style="border-right: 1px solif #fff;">
|
<li class="header__nav-item pos-relative" style="border-right: 1px solif #fff;">
|
||||||
<a href="/" class="header__nav-link" style="color:#fff;line-height:42px;">Скачать прайс-лист</a>
|
<a href="/" class="header__nav-link" style="color:#fff;line-height:42px;height: 45px;">Скачать прайс-лист</a>
|
||||||
</li>
|
</li>
|
||||||
{* п2 *}
|
{* п2 *}
|
||||||
<li class="header__nav-item pos-relative">
|
<li class="header__nav-item pos-relative">
|
||||||
<a href="/tovar_cat/0-1.html" class="header__nav-link" style="color:#fff;line-height:42px;">Каталог</a>
|
<a href="/tovar_cat/0-1.html" class="header__nav-link" style="color:#fff;line-height:42px;height: 45px;">Каталог</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
@ -343,4 +348,4 @@
|
||||||
<!-- :::::: End Header Section :::::: -->
|
<!-- :::::: End Header Section :::::: -->
|
||||||
|
|
||||||
<!-- :::::: Start Main Container Wrapper :::::: -->
|
<!-- :::::: Start Main Container Wrapper :::::: -->
|
||||||
<main id="main-container" class="main-container container" style="border: 1px outset lightgrey; padding: 0px; background-color: #fff;">
|
<main id="main-container" class="main-container container" style="border-top: 1px solid gray; padding: 0px; background-color: #fff;">
|
|
@ -1,140 +1,66 @@
|
||||||
<!-- :::::: Start Hero Section :::::: -->
|
|
||||||
{include file=$header h1=$page_info[0].title title=$page_info[0].title keywords=$page_info[0].keywords description=$page_info[0].description}
|
{include file=$header h1=$page_info[0].title title=$page_info[0].title keywords=$page_info[0].keywords description=$page_info[0].description}
|
||||||
<!-- :::::: Start Breadcrumb Section :::::: -->
|
<div class="row">
|
||||||
<div class="page-breadcrumb" style="background-image: url(/img/{$smarty.server.SERVER_NAME}/tovar_cat/{$catImg}.jpg); background-position: -40%; background-size: 100%; margin-bottom: 0px;">
|
<div class="col-lg-3">
|
||||||
<div class="container">
|
{section name=customer loop=$list}{if $list[customer].id}
|
||||||
<div class="row">
|
<div class="col-xxl-12 col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12">
|
||||||
<div class="col-12">
|
<div class="product__box product__default--single text-center">
|
||||||
<!--ul class="page-breadcrumb__menu">
|
<div class="product__content m-t-20">
|
||||||
<li class="page-breadcrumb__nav"><a href="/">Главная</a></li>
|
<a href="/tovar_cat/{$list[customer].id}-1.html" class="product__link">{$list[customer].title}</a>
|
||||||
<li class="page-breadcrumb__nav active">{$page_info[0].title}</li>
|
</div>
|
||||||
</ul -->
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
{/if}{/section}
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-8">
|
||||||
|
<nav aria-label="breadcrumb" style="background-color: transparent;">
|
||||||
|
<ol class="breadcrumb" style="background-color: transparent;">
|
||||||
|
<li class="breadcrumb-item"><a href="/">Главная</a></li>
|
||||||
|
<li class="breadcrumb-item"><a href="/tovar_cat/0-1.html">Каталог</a></li>
|
||||||
|
{section name=customer loop=$Breadcrumb}{if ($Breadcrumb[customer].id && $Breadcrumb[customer].id!=$smarty.get.id)}
|
||||||
|
<li class="breadcrumb-item"><a href="/tovar_cat/{$Breadcrumb[customer].id}-1.html">{$Breadcrumb[customer].title}</a></li>
|
||||||
|
{/if}{/section}
|
||||||
|
<li class="breadcrumb-item active" aria-current="page">{$page_info[0].title}</li>
|
||||||
|
</ol>
|
||||||
|
</nav>
|
||||||
|
<main id="main-container" class="main-container">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<h1 class="text-center">{$page_info[0].title}</h1>
|
||||||
|
{if $list2[0].id}
|
||||||
|
<div class="product-tab-area">
|
||||||
|
<div class="tab-content tab-animate-zoom">
|
||||||
|
<div class="tab-pane show active shop-grid" id="sort-grid">
|
||||||
|
<div class="row">
|
||||||
|
{section name=customer loop=$list2}{if $list2[customer].img}
|
||||||
|
<div class="col-xxl-4 col-xl-4 col-lg-4 col-md-4 col-sm-6 col-12">
|
||||||
|
<div class="product__box product__default--single text-center">
|
||||||
|
<div class="product__img-box pos-relative" style="height: 300px;">
|
||||||
|
<a href="/tovar_show/{$list2[customer].id}" class="product__img--link">
|
||||||
|
<img class="product__img img-fluid lazy" src="img/nofoto.jpg" data-original="/img/{$smarty.server.SERVER_NAME}/tovar/{$list2[customer].img}.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="product__content m-t-20">
|
||||||
|
<div style="height: 100px;">
|
||||||
|
<a href="/tovar_show/{$list2[customer].id}" class="product__link">{$list2[customer].title}</a>
|
||||||
|
</div>
|
||||||
|
<div class="product__price m-t-5">
|
||||||
|
{if $list2[customer].cena}<span class="product__price" style="font-size: 16px">{$list2[customer].cena} руб.<!--del>$29.00</del --></span>{/if}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/if}{/section}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
|
{$paginator}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<nav aria-label="breadcrumb">
|
|
||||||
<ol class="breadcrumb">
|
|
||||||
<li class="breadcrumb-item"><a href="/">Главная</a></li>
|
|
||||||
<li class="breadcrumb-item"><a href="/tovar_cat/0-1.html">Каталог</a></li>
|
|
||||||
{section name=customer loop=$Breadcrumb}{if ($Breadcrumb[customer].id && $Breadcrumb[customer].id!=$smarty.get.id)}
|
|
||||||
<li class="breadcrumb-item"><a href="/tovar_cat/{$Breadcrumb[customer].id}-1.html">{$Breadcrumb[customer].title}</a></li>
|
|
||||||
{/if}{/section}
|
|
||||||
<li class="breadcrumb-item active" aria-current="page">{$page_info[0].title}</li>
|
|
||||||
</ol>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<!-- :::::: End Breadcrumb Section :::::: -->
|
|
||||||
|
|
||||||
<!-- :::::: Start Main Container Wrapper :::::: -->
|
|
||||||
<main id="main-container" class="main-container">
|
|
||||||
<div class="container">
|
|
||||||
<div class="row">
|
|
||||||
<!-- Start Rightside - Content -->
|
|
||||||
<!--div class="img-responsive">
|
|
||||||
<img src="assets/img/banner/size-wide/banner-shop-1-img-1-wide.jpg" alt="">
|
|
||||||
</div -->
|
|
||||||
<!-- :::::: Start Sort Box Section :::::: -->
|
|
||||||
<h1 class="text-center">{$page_info[0].title}</h1>
|
|
||||||
{if $list[0].id}
|
|
||||||
<!-- категрии -->
|
|
||||||
<div class="product-tab-area" style="margin-bottom: 20px;">
|
|
||||||
<div class="tab-content tab-animate-zoom">
|
|
||||||
<div class="tab-pane show active shop-grid" id="sort-grid">
|
|
||||||
<h3>Категории</h3>
|
|
||||||
<div class="row">
|
|
||||||
{section name=customer loop=$list}{if $list[customer].id}
|
|
||||||
<div class="col-xxl-3 col-xl-3 col-lg-2 col-md-3 col-sm-3 col-12">
|
|
||||||
<!-- Start Single Default Product -->
|
|
||||||
<div class="product__box product__default--single text-center">
|
|
||||||
<!-- Start Product Image -->
|
|
||||||
<!-- div class="product__img-box pos-relative">
|
|
||||||
<a href="/tovar_cat/{$list[customer].id}" class="product__img--link">
|
|
||||||
<img class="product__img img-fluid lazy" src="img/nofoto.jpg" data-original="/img/tovar/{$list[customer].img}.jpg" alt="">
|
|
||||||
</a>
|
|
||||||
</div -->
|
|
||||||
<!-- End Product Image -->
|
|
||||||
<!-- Start Product Content -->
|
|
||||||
<div class="product__content m-t-20">
|
|
||||||
<a href="/tovar_cat/{$list[customer].id}-1.html" class="product__link">{$list[customer].title}</a>
|
|
||||||
</div>
|
|
||||||
<!-- End Product Content -->
|
|
||||||
</div>
|
|
||||||
<!-- End Single Default Product -->
|
|
||||||
</div>
|
|
||||||
{/if}{/section}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!-- /категрии -->
|
|
||||||
{/if} {if $list2[0].id}
|
|
||||||
<!-- товар -->
|
|
||||||
<!-- :::::: Start Sort Box Section :::::: -->
|
|
||||||
<div class="product-tab-area">
|
|
||||||
<div class="tab-content tab-animate-zoom">
|
|
||||||
<div class="tab-pane show active shop-grid" id="sort-grid">
|
|
||||||
<h3>Продукция</h3>
|
|
||||||
<div class="row">
|
|
||||||
{section name=customer loop=$list2}{if $list2[customer].img}
|
|
||||||
<div class="col-xxl-3 col-xl-3 col-lg-3 col-md-3 col-sm-6 col-12">
|
|
||||||
|
|
||||||
<!-- Start Single Default Product -->
|
|
||||||
<div class="product__box product__default--single text-center">
|
|
||||||
<!-- Start Product Image -->
|
|
||||||
<div class="product__img-box pos-relative" style="height: 300px;">
|
|
||||||
<a href="/tovar_show/{$list2[customer].id}" class="product__img--link">
|
|
||||||
<img class="product__img img-fluid lazy" src="img/nofoto.jpg" data-original="/img/{$smarty.server.SERVER_NAME}/tovar/{$list2[customer].img}.jpg" alt="">
|
|
||||||
</a>
|
|
||||||
<!-- Start Procuct Label -->
|
|
||||||
<!-- span class="product__label product__label--sale-dis">-34%</span -->
|
|
||||||
<!-- End Procuct Label -->
|
|
||||||
<!-- Start Product Action Link-->
|
|
||||||
<!--ul class="product__action--link pos-absolute" -->
|
|
||||||
<!--li><a href="#modalAddCart" data-toggle="modal"><i class="icon-shopping-cart"></i></a></li -->
|
|
||||||
<!-- li><a href="compare.html"><i class="icon-sliders"></i></a></li>
|
|
||||||
<li><a href="wishlist.html"><i class="icon-heart"></i></a></li>
|
|
||||||
<li><a href="#modalQuickView" data-toggle="modal"><i class="icon-eye"></i></a></li -->
|
|
||||||
<!-- /ul -->
|
|
||||||
<!-- End Product Action Link -->
|
|
||||||
</div>
|
|
||||||
<!-- End Product Image -->
|
|
||||||
<!-- Start Product Content -->
|
|
||||||
<div class="product__content m-t-20">
|
|
||||||
<div style="height: 100px;">
|
|
||||||
<a href="/tovar_show/{$list2[customer].id}" class="product__link">{$list2[customer].title}</a>
|
|
||||||
</div>
|
|
||||||
<div class="product__price m-t-5">
|
|
||||||
{if $list2[customer].cena}<span class="product__price" style="font-size: 16px">{$list2[customer].cena} руб.<!--del>$29.00</del --></span>{/if}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!-- End Product Content -->
|
|
||||||
</div>
|
|
||||||
<!-- End Single Default Product -->
|
|
||||||
|
|
||||||
</div>
|
|
||||||
{/if}{/section}
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!-- /товар -->
|
|
||||||
{/if}
|
|
||||||
|
|
||||||
|
|
||||||
{$paginator}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</main>
|
|
||||||
<!-- :::::: End MainContainer Wrapper :::::: -->
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
{include file=$footer}
|
{include file=$footer}
|
|
@ -16,8 +16,8 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- :::::: End Хлебные крошки :::::: -->
|
<!-- :::::: End Хлебные крошки :::::: -->
|
||||||
<nav aria-label="breadcrumb">
|
<nav aria-label="breadcrumb" style="background-color: transparent;">
|
||||||
<ol class="breadcrumb">
|
<ol class="breadcrumb" style="background-color: transparent;">
|
||||||
<li class="breadcrumb-item"><a href="/">Главная</a></li>
|
<li class="breadcrumb-item"><a href="/">Главная</a></li>
|
||||||
<li class="breadcrumb-item"><a href="/tovar_cat/0-1.html">Каталог</a></li>
|
<li class="breadcrumb-item"><a href="/tovar_cat/0-1.html">Каталог</a></li>
|
||||||
{section name=customer loop=$Breadcrumb}{if ($Breadcrumb[customer].id && $Breadcrumb[customer].id!=$smarty.get.id)}
|
{section name=customer loop=$Breadcrumb}{if ($Breadcrumb[customer].id && $Breadcrumb[customer].id!=$smarty.get.id)}
|
||||||
|
|
Loading…
Reference in New Issue