Footer Legal Links — Patch Instructions
In marshall-homepage.html (and any Hugo base layout footer partial)
Find this block near the bottom of every page:
<div class="footer-bottom">
<span>© 2025 Marshall Property Management. All rights reserved.</span>
<span>Cambridge, MD · (443) 205-4415</span>
</div>
Replace with:
<div class="footer-bottom">
<span>© 2026 Marshall Property Management. All rights reserved.</span>
<span style="display:flex; gap:1.5rem; align-items:center;">
<a href="/privacy-policy/" style="color:rgba(255,255,255,0.4); text-decoration:none; font-size:0.72rem; transition:color 0.2s;" onmouseover="this.style.color='rgba(255,255,255,0.7)'" onmouseout="this.style.color='rgba(255,255,255,0.4)'">Privacy Policy</a>
<a href="/terms-of-service/" style="color:rgba(255,255,255,0.4); text-decoration:none; font-size:0.72rem; transition:color 0.2s;" onmouseover="this.style.color='rgba(255,255,255,0.7)'" onmouseout="this.style.color='rgba(255,255,255,0.4)'">Terms of Service</a>
<span>Cambridge, MD · (443) 205-4415</span>
</span>
</div>
In Hugo base layout (layouts/_default/baseof.html or partials/footer.html)
The Hugo template will have the same footer-bottom div. Apply the same replacement there so all 133+ pages inherit it automatically — you only have to change it in one place.
Note: Copyright year
Updated 2025 → 2026 in the replacement above. Update in both the HTML file and the Hugo template.
What to add in the footer-col “Contact” section (optional but good practice)
Inside the Contact footer column ul, add:
<li><a href="/privacy-policy/">Privacy Policy</a></li>
<li><a href="/terms-of-service/">Terms of Service</a></li>