Skip to content

Commit

Permalink
Update layout.html
Browse files Browse the repository at this point in the history
  • Loading branch information
ahtohbi4 authored Nov 4, 2016
1 parent caabe34 commit 88d2bb0
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions libs/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
INFO: class="no-js" - CSS class to view until JS is not initialized
INFO: lang="" - Lang code to localization site
see http://www.w3.org/International/questions/qa-html-language-declarations -->
<html class="no-js" lang="%lang%">
<html class="no-js" lang="en">
<head>
<!-- Charset -->
<meta charset="utf-8">
Expand All @@ -14,8 +14,8 @@
<title>%title%</title>

<!-- SEO meta informations -->
<meta name="description" content="%description%">
<meta name="keywords" content="%keywords%">
<meta name="description" content="Some page description">
<meta name="keywords" content="Some, pages, keywords">

<!-- To specify multiple icons for different device resolutions—for example, support both iPhone and iPad devices—add a sizes attribute to each link element -->
<link rel="apple-touch-icon" href="touch-icon-iphone.png">
Expand All @@ -26,28 +26,28 @@
<!-- Open Graph Basic Metadata
INFO: see http://ogp.me/#metadata -->
<meta property="og:type" content="website">
<meta property="og:url" content= "%/path/to/target/page/%">
<meta property="og:title" content="%title%">
<meta property="og:image" content="%/path/to/image.jpg%">
<meta property="og:url" content= "/path/to/target/page/">
<meta property="og:title" content="Some title">
<meta property="og:image" content="/path/to/image.jpg">

<!-- Open Graph Optional Metadata
INFO: see http://ogp.me/#optional -->
<meta property="og:description" content="%description%">
<meta property="og:description" content="Some description">
<meta property="og:determiner" content="%determiner%">
<meta property="og:locale" content="en_EN">
<meta property="og:locale:alternate" content="ru_RU">
<meta property="og:site_name" content="%name%">
<meta property="og:audio" content="%/path/to/audio/file.mp3%">
<meta property="og:video" content="%/path/to/video/file.avi%">
<meta property="og:site_name" content="name">
<meta property="og:audio" content="/path/to/audio/file.mp3">
<meta property="og:video" content="/path/to/video/file.avi">

<!-- Twitter Cards.
INFO: see https://dev.twitter.com/cards/getting-started
INFO: after check in validator https://cards-dev.twitter.com/validator -->
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@%username%">
<meta name="twitter:title" content="%title%">
<meta name="twitter:description" content="%description%">
<meta name="twitter:image" content="%/path/to/image.jpg%">
<meta name="twitter:site" content="@someone">
<meta name="twitter:title" content="Some title">
<meta name="twitter:description" content="Any description">
<meta name="twitter:image" content="/path/to/image.jpg">

<!-- This meta tag tells Google that you don't want to provide a translation for current page.
INFO: see https://support.google.com/webmasters/answer/79812 -->
Expand All @@ -65,11 +65,11 @@
<!-- Cononical link
INFO: see https://yandex.ru/support/webmaster/controlling-robot/html.xml#canonical
see https://support.google.com/webmasters/answer/139066?rd=1 -->
<link rel="canonical" href="%/cannonical/link/to/current/page/%">
<link rel="canonical" href="/cannonical/link/to/current/page/">

<!-- Alternate link
INFO: see https://support.google.com/webmasters/answer/189077?hl=ru -->
<link rel="alternate" hreflang="ru" href="%/path/to/alternate/language/of/current/page/%">
<link rel="alternate" hreflang="ru" href="/path/to/alternate/language/of/current/page/">

<!-- Identifies a DNS query to resolve the background, so that requests can occur more quickly.
INFO: see http://www.w3.org/TR/resource-hints/#dfn-prefetch -->
Expand All @@ -90,7 +90,7 @@
<meta name="msapplication-config" content="/browserconfig.xml">
<!-- Number of MS meta-tags.
INFO: see https://msdn.microsoft.com/ru-ru/library/dn255024(v=vs.85).aspx -->
<meta name="application-name" content="%name%">
<meta name="application-name" content="name">
<!-- <meta name="msapplication-badge" content="frequency=60; polling-uri=http://example.com/path/to/polling.xml"> -->

<!-- CSS for layout
Expand Down

0 comments on commit 88d2bb0

Please sign in to comment.