virt2/api/mod/seo-analiz.html

43 lines
1.3 KiB
HTML
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{include file=$header_admin h1="Проблемные страницы" title="Краткий сео-анализ" description="Обзор проблемных страниц"}
<h2>Страницы без Description</h2>
<ul>
{section name=customer loop=$page_no_description}
{if $page_no_description[customer].id}
<li><a href="/page_edit/{$page_no_description[customer].id}" target="_blank">{$page_no_description[customer].title}</a></li>
{/if}
{/section}
</ul>
<h2>Страницы без keywords</h2>
<ul>
{section name=customer loop=$page_no_keywords}
{if $page_no_keywords[customer].id}
<li><a href="/page_edit/{$page_no_keywords[customer].id}" target="_blank">{$page_no_keywords[customer].title}</a></li>
{/if}
{/section}
</ul>
<h2>Категории без Description</h2>
<ul>
{section name=customer loop=$cat_no_description}
{if $cat_no_description[customer].id}
<li><a href="/edit_cat/{$cat_no_description[customer].id}" target="_blank">{$cat_no_description[customer].txt}</a></li>
{/if}
{/section}
</ul>
<h2>Категории без keywords</h2>
<ul>
{section name=customer loop=$cat_no_keywords}
{if $cat_no_keywords[customer].id}
<li><a href="/edit_cat/{$cat_no_keywords[customer].id}" target="_blank">{$cat_no_keywords[customer].txt}</a></li>
{/if}
{/section}
</ul>
{include file=$footer_admin}