fix(seo): shorten the footer and center the related-solutions cards
Every landing page was listed in the footer, so adding keyword clusters made that one column taller than the rest of the footer put together. It now lists six — the head terms and the two biggest specialties — and the rest stay reachable through the "other solutions" block each page already renders. That trade only holds if nothing falls out of the link graph, so the old test asserting "the footer links to every page" is replaced by one that walks the related-page graph from the footer links and fails when any page is not reachable. Physiotherapy was the one page that would have been orphaned; the polyclinic page now links to it. The related-solutions heading said "for your trade", which reads oddly for the clinics it is addressing, and its cards were left-aligned in a centered section. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -36,7 +36,7 @@
|
||||
<div class="footer-col">
|
||||
<h4>راهکارها</h4>
|
||||
<div class="foot-links">
|
||||
{% for landing in landing_pages.all() %}
|
||||
{% for landing in landing_pages.featured() %}
|
||||
<a href="/{{ landing.slug }}">{{ landing.h1 }}</a>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
@@ -130,12 +130,12 @@
|
||||
<div class="wrap">
|
||||
<div class="specs-head reveal">
|
||||
<span class="eyebrow">راهکارهای دیگر</span>
|
||||
<h2>کلینیک پرو برای صنف شما</h2>
|
||||
<h2>کلینیک پرو برای کلینیک شما</h2>
|
||||
<p>هر مجموعه نیاز خودش را دارد؛ نسخهٔ متناسب با کار خود را ببینید.</p>
|
||||
</div>
|
||||
<div class="specs-grid">
|
||||
{% for item in related %}
|
||||
<a class="spec-card reveal" href="/{{ item.slug }}" style="text-decoration:none;color:inherit;display:block">
|
||||
<a class="spec-card reveal" href="/{{ item.slug }}" style="text-decoration:none;color:inherit;display:block;text-align:center">
|
||||
<h3>{{ item.h1 }}</h3>
|
||||
<p style="font-size:13.5px;color:var(--muted);line-height:1.9;margin-top:12px">{{ item.metaDescription }}</p>
|
||||
</a>
|
||||
|
||||
Reference in New Issue
Block a user