docs: add support for meta descriptions in the <head>
Change-Id: I7ff7a5083a75dde718b4701623e029c225289617
This commit is contained in:
parent
dc7418b282
commit
3652a113d1
3 changed files with 11 additions and 7 deletions
|
@ -2,19 +2,19 @@
|
|||
<?cs include:"macros.cs" ?>
|
||||
<html>
|
||||
<?cs include:"head_tag.cs" ?>
|
||||
<body class="gc-documentation">
|
||||
<body class="gc-documentation" itemscope itemtype="http://schema.org/Article">
|
||||
<?cs include:"header.cs" ?>
|
||||
|
||||
<div class="g-unit" id="doc-content"><a name="top"></a>
|
||||
|
||||
<div id="jd-header" class="guide-header">
|
||||
<span class="crumb">
|
||||
<span class="crumb" itemprop="breadcrumb">
|
||||
<?cs if:parent.link ?>
|
||||
<a href="<?cs var:parent.link ?>"><?cs var:parent.title ?></a>:
|
||||
<?cs else ?>
|
||||
<?cs /if ?>
|
||||
</span>
|
||||
<h1><?cs var:page.title ?></h1>
|
||||
<h1 itemprop="name"><?cs var:page.title ?></h1>
|
||||
</div>
|
||||
|
||||
<?cs # THIS IS THE MAIN DOC CONTENT ?>
|
||||
|
@ -61,7 +61,7 @@
|
|||
<?cs /if ?><?cs # end if trainingnavtop ?>
|
||||
|
||||
|
||||
<div class="jd-descr">
|
||||
<div class="jd-descr" itemprop="articleBody">
|
||||
<?cs call:tag_list(root.descr) ?>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<?cs if:page.metaDescription ?>
|
||||
<meta name="Description" content="<?cs var:page.metaDescription ?>">
|
||||
<?cs /if ?>
|
||||
<link rel="shortcut icon" type="image/x-icon" href="<?cs var:toroot ?>favicon.ico" />
|
||||
<title><?cs
|
||||
if:page.title ?><?cs
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
<?cs else ?>
|
||||
<?cs include:"head_tag.cs" ?>
|
||||
<?cs /if ?>
|
||||
<body class="gc-documentation">
|
||||
<body class="gc-documentation" itemscope itemtype="http://schema.org/CreativeWork">
|
||||
<a name="top"></a>
|
||||
<?cs call:custom_masthead() ?>
|
||||
|
||||
|
@ -42,10 +42,11 @@
|
|||
<div class="g-unit" id="doc-content" >
|
||||
<div id="jd-header" class="guide-header" >
|
||||
<span class="crumb"> </span>
|
||||
<h1><?cs if:android.whichdoc == "online" ?>Download the <?cs /if ?><?cs var:page.title ?></h1>
|
||||
<h1 itemprop="name"><?cs if:android.whichdoc == "online" ?>Download the <?cs /if ?><?cs
|
||||
var:page.title ?></h1>
|
||||
</div>
|
||||
|
||||
<div id="jd-content">
|
||||
<div id="jd-content" itemprop="description">
|
||||
|
||||
<?cs if:sdk.not_latest_version ?>
|
||||
<div class="special">
|
||||
|
|
Loading…
Reference in a new issue