Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions _layouts/default-layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

{%- if seo_group != '' -%}
{%- assign seo_slug = page.url | split: '/' | last | replace: '.html', '' -%}
{%- if seo_slug == '' -%}
{%- if seo_slug == '' or seo_slug == 'license' -%}
{%- assign seo_slug = 'index' -%}
{%- endif -%}

Expand All @@ -33,7 +33,7 @@
{%- endif -%}
{%- endif -%}
<title>{{ seo_title }}</title>
<meta name="description" content="{{ seo_description }}">
<meta name="description" content="{{ seo_description | escape_once }}">
<meta name="keywords" content="{{ page.keywords }}" />
{%- include head.html -%}
{%- if site.useVersionTreeV2 -%}
Expand Down
2 changes: 2 additions & 0 deletions _layouts/home-page.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
<html lang="en-US">
<head>
<title>{{ page.title }}</title>
<meta name="description" content="{{ page.description | escape_once }}">
<meta name="keywords" content="{{ page.keywords }}" />
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
Expand Down
2 changes: 1 addition & 1 deletion _layouts/search-layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<title>{% if site.firstLevelUrl contains 'web-twain' %}Dynamic Web TWAIN SDK Documentation Search{% else %}{{ page.title }}{% endif %}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="{% if site.firstLevelUrl contains 'web-twain' %}Dynamic Web TWAIN SDK Documentation Search{% else %}{{ page.description }}{% endif %}">
<meta name="description" content="{% if site.firstLevelUrl contains 'web-twain' %}Dynamic Web TWAIN SDK Documentation Search{% else %}{{ page.description | escape_once }}{% endif %}">
<meta name="keywords" content="{{page.keywords}}">

{%- assign docFullPath = site.docFullPath -%}
Expand Down
Loading