Skip to content

Commit 562e369

Browse files
committed
update: parameter organization in the html-head
1 parent 397aa47 commit 562e369

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

html/html-head.sublime-snippet

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -2,37 +2,37 @@
22
<content><![CDATA[
33
<meta name="format-detection" content="telephone=no">
44
<meta name="referrer" content="origin">
5-
<meta name="description" content="">
5+
<meta name="description" content="${1:Description}">
66
77
<!-- facebook -->
8-
<meta property="og:site_name" content="">
9-
<meta property="og:title" content="">
8+
<meta property="og:site_name" content="${2:Site name}">
9+
<meta property="og:title" content="${3:Title}">
1010
<meta property="og:type" content="website">
11-
<meta property="og:url" content="http://">
12-
<meta property="og:description" content="">
13-
<meta property="og:image" content="http://">
14-
<meta property="fb:admins" content="">
15-
<meta property="fb:app_id" content="">
11+
<meta property="og:url" content="${4:Url}">
12+
<meta property="og:description" content="${1:Description}">
13+
<meta property="og:image" content="${5:Image}">
14+
<meta property="fb:admins" content="$6">
15+
<meta property="fb:app_id" content="$7">
1616
17-
<link rel="image_src" href="">
17+
<link rel="image_src" href="${5:Image}">
1818
1919
<!-- component schema.org -->
20-
<meta itemprop="name" content="">
21-
<meta itemprop="description" content="">
22-
<meta itemprop="image" content="http://">
23-
<meta itemprop="url" content="http://">
20+
<meta itemprop="name" content="${2:Site name}">
21+
<meta itemprop="description" content="${1:Description}">
22+
<meta itemprop="image" content="${5:Image}">
23+
<meta itemprop="url" content="${4:Url}">
2424
25-
<meta name="geo.country" content="BR">
26-
<meta name="geo.region" content="RJ">
27-
<meta name="geo.placename" content="Rio de Janeiro">
25+
<meta name="geo.country" content="$8">
26+
<meta name="geo.region" content="$9">
27+
<meta name="geo.placename" content="$10">
2828
2929
<!-- favicon -->
30-
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
31-
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
32-
<link rel="icon" href="/favicon.ico" type="image/x-icon">
30+
<link rel="apple-touch-icon" href="$11/apple-touch-icon.png">
31+
<link rel="shortcut icon" href="$12/favicon.ico" type="image/x-icon">
32+
<link rel="icon" href="$13/favicon.ico" type="image/x-icon">
3333
3434
<!-- canonical -->
35-
<link rel="canonical" href="http://">
35+
<link rel="canonical" href="${4:Url}">
3636
]]></content>
3737
<tabTrigger>htmlhead</tabTrigger>
3838
<description>Head tags</description>

0 commit comments

Comments
 (0)