Skip to content

Commit 1a858d3

Browse files
committed
Use obj.og_description for OG description
1 parent fd73622 commit 1a858d3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

components/template-meta.tpl

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@
3131
{%- endif -%}
3232

3333
{%- comment -%}Open Graph description{%- endcomment -%}
34-
{%- if og_obj.description != blank -%}
35-
<meta property="og:description" content="{{ og_obj.description | strip_html | escape_once }}">
36-
<meta name="description" content="{{ og_obj.description | strip_html | escape_once }}">
34+
{%- if og_obj.og_description != blank -%}
35+
<meta property="og:description" content="{{ og_obj.og_description | strip_html | escape_once }}">
36+
<meta name="description" content="{{ og_obj.og_description | strip_html | escape_once }}">
3737
{%- endif -%}
3838

3939
{%- if body_bg_color != blank -%}

0 commit comments

Comments
 (0)