parseUrlArray(@$_GET); if (!$data['valid']) { header('Location: index.php', true, 302); } ?> <?php echo $blog->pageTitle('Создание и обслуживание сайтов : WEB - ДИЗАЙН', ' - '); ?> getOpengraphTags($data['id'], "\t\t"); } ?> parseUrlArray(@$_GET); $numPosts = $blog->getPostsCount(); $pagStart = array_key_exists("start", $urlData) ? $urlData['start'] : 0; $pagLength = $imSettings['blog']['home_posts_number']; $isPostPage = false; if (array_key_exists('slug', $urlData)) { $isPostPage = true; $href = $blogBaseUrl . '/?' . $urlData['slug']; } else if (array_key_exists('id', $urlData)) { $isPostPage = true; $href = $blogBaseUrl . '/' . $blog->getSlugUrl($urlData['id']); } else if (array_key_exists('category', $urlData)) { $category = $blog->getUnescapedCategory($urlData['category']); if ($category !== NULL) { $href = $blogBaseUrl . '/?category=' . urlencode(str_replace(' ', '_', $category)); } } else if (array_key_exists('author', $urlData)) { $author = $blog->getUnescapedAuthor($urlData['author']); if ($author !== NULL) { $href = $blogBaseUrl . '/?author=' . urlencode(str_replace(' ', '_', $author)); } } else if (array_key_exists('tag', $urlData)) { $href = $blogBaseUrl . '/?tag=' . urlencode($urlData['tag']); } else if (array_key_exists('month', $urlData)) { $href = $blogBaseUrl . '/?month=' . urlencode($urlData['month']); } else { $href = $blogBaseUrl; } if ($isPostPage || $pagStart == 0) { echo '' . PHP_EOL; } if (!$isPostPage && $numPosts > $pagLength) { if ($pagStart - $pagLength >= 0) { $prev = 'start=' . ($pagStart - $pagLength) . '&length=' . $pagLength; $prev = ($href == $blogBaseUrl) ? '?' . $prev : '&' . $prev; echo '' . PHP_EOL; } if ($pagStart + $pagLength < $numPosts) { $next = 'start=' . ($pagStart + $pagLength) . '&length=' . $pagLength; $next = ($href == $blogBaseUrl) ? '?' . $next : '&' . $next; echo '' . PHP_EOL; } } ?>

Создание и обслуживание сайтов - WEB - ДИЗАЙН

САЙТ - WEB - ДИЗАЙН

Перейти к контенту
< id="imBlogContent" itemscope itemType="http://schema.org/BlogPosting">setCommentsPerPage(10); if(isset($data['id'])) $blog->showPost($data['id'],1); else if(isset($data['category'])) $blog->showCategory($data['category']); else if(isset($data['author'])) $blog->showAuthor($data['author']); else if(isset($data['tag'])) $blog->showTag($data['tag']); else if(isset($data['month'])) $blog->showMonth($data['month']); else if(isset($data['search'])) $blog->showSearch($data['search']); else $blog->showLast(10); ?> >
Яндекс.Метрика
Назад к содержимому