Skip to content

Commit ac6d044

Browse files
committed
Merge pull request #262 from azu/meta-tag
refactor(meta): add Twitter Card and OGP
2 parents 38731d6 + 33bfa4f commit ac6d044

File tree

3 files changed

+21
-5
lines changed

3 files changed

+21
-5
lines changed

docinfo.html

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,26 @@
1-
<meta name="google-site-verification" content="bMotEbgYwkzA3k4PkuyK_NUdz0bKh-Phz0oUwNmRSVo" />
1+
<!-- Twitter -->
2+
<meta name="twitter:card" content="summary">
3+
<meta name="twitter:site" content="@azu_re">
4+
<meta name="twitter:url" content="http://azu.github.io/promises-book/">
5+
<meta name="twitter:title" content="JavaScript Promiseの本">
6+
<meta name="twitter:description" content="JavaScriptのPromiseを使った非同期処理の書き方、テスト、アンチパターンについて解説した無料の電子書籍">
7+
<meta name="twitter:image" content="http://azu.github.io/promises-book/public/img/promise-catch.png">
8+
<!-- OGP -->
9+
<meta property="og:type" content="website">
10+
<meta property="og:url" content="http://azu.github.io/promises-book/">
11+
<meta property="og:title" content="JavaScript Promiseの本">
12+
<meta property="og:site_name" content="JavaScript Promiseの本">
13+
<meta property="og:description" content="JavaScriptのPromiseを使った非同期処理の書き方、テスト、アンチパターンについて解説した無料の電子書籍">
14+
<meta property="og:image" content="http://azu.github.io/promises-book/public/img/promise-catch.png">
15+
<!-- Meta -->
16+
<meta name="google-site-verification" content="bMotEbgYwkzA3k4PkuyK_NUdz0bKh-Phz0oUwNmRSVo"/>
217
<script type="text/javascript" src="public/js/google-analytics.js" async></script>
318
<link rel="canonical" href="http://azu.github.io/promises-book/">
4-
<link rel="alternate" type="application/atom+xml" title="JavaScript Promiseの本" href="https://github.com/azu/promises-book/releases.atom">
19+
<link rel="alternate" type="application/atom+xml" title="JavaScript Promiseの本"
20+
href="https://github.com/azu/promises-book/releases.atom">
521
<link href="public/img/favicon.ico" rel="shortcut icon" type="image/x-icon">
622
<link rel="icon" sizes="16x16 32x32" href="public/img/favicon.ico">
723
<link rel="stylesheet" type="text/css" href="public/css/overload.css"/>
824
<link rel="stylesheet" type="text/css" href="node_modules/codemirror/lib/codemirror.css"/>
925
<link rel="stylesheet" type="text/css" href="public/css/mirror-console-compoenent.css">
10-
<script type="text/javascript" src="public/js/build/app.js" async defer></script>
26+
<script type="text/javascript" src="public/js/build/app.js" async defer></script>

index.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
azu
33
:author: azu
44
:authorinitials: azu
5-
:keywords: JavaScript, ECMAScript, Promise, 日本語, 使い方, チュートリアル, リファレンス
6-
:description: JavaScriptのPromiseを使った非同期処理の書き方、テスト、アンチパターンについて解説しています
5+
:keywords: JavaScript, ECMAScript, Promise, 仕様, 日本語, 使い方, チュートリアル, リファレンス, 無料
6+
:description: JavaScriptのPromiseを使った非同期処理の書き方、テスト、アンチパターンについて解説した無料の電子書籍
77
:revnumber: {bookversion}
88
:homepage: http://azu.github.io/promises-book/
99
:source: https://github.com/azu/promises-book

public/img/promise-catch.png

22.9 KB
Loading

0 commit comments

Comments
 (0)