8fcfbe692b
Add special metadata that Google Search pays attention to, so that the search engine ignores the <aside> element contents for announcements.
14 lines
432 B
HTML
14 lines
432 B
HTML
{{ if .Page.Param "announcement" }}
|
|
<section lang="en" id="announcement" style="background-color:{{ .Page.Param "announcement_bg" }}">
|
|
<aside>
|
|
<div class="content announcement main-section" data-nosnippet>
|
|
|
|
<h4 class="announcement">
|
|
{{ T "announcement_title" | markdownify }}
|
|
</h4>
|
|
<p class="announcement">{{ T "announcement_message" | markdownify }}</p>
|
|
|
|
</div>
|
|
</aside>
|
|
</section>
|
|
{{ end }} |