Skip to content

Commit 0a08e67

Browse files
committed
Added missing extends pragmas
1 parent 2231aab commit 0a08e67

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

docs/setup/setting-up-site-search.md

+2
Original file line numberDiff line numberDiff line change
@@ -526,6 +526,8 @@ search to an external service, you can add a custom JavaScript file to the
526526
`docs` directory and [override the `config` block][overriding blocks]:
527527

528528
``` html
529+
{% extends "base.html" %}
530+
529531
{% block config %}
530532
{{ super() }}
531533
<script>

docs/setup/setting-up-social-cards.md

+4
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,8 @@ you don't want to use it:
225225
=== ":material-graph: Open Graph"
226226

227227
``` html
228+
{% extends "base.html" %}
229+
228230
{% block extrahead %}
229231
{% set title = config.site_name %}
230232
{% if page and page.meta and page.meta.title %}
@@ -246,6 +248,8 @@ you don't want to use it:
246248
=== ":fontawesome-brands-twitter: Twitter Cards"
247249

248250
``` html
251+
{% extends "base.html" %}
252+
249253
{% block extrahead %}
250254
{% set title = config.site_name %}
251255
{% if page and page.meta and page.meta.title %}

0 commit comments

Comments
 (0)