Skip to content

Commit 0d4a3de

Browse files
authored
Merge pull request #31 from comandosgit/copilot/improve-seo-best-practices
Implement modern SEO best practices
2 parents 7d3fd3a + 1751d01 commit 0d4a3de

File tree

3 files changed

+44
-5
lines changed

3 files changed

+44
-5
lines changed

index.html

Lines changed: 40 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,27 @@
99
<title>Comandos Git - Aprenda Git do básico ao avançado</title>
1010
<link href="favicon.ico" rel="shortcut icon" type="image/x-icon">
1111
<meta name="author" content="Rafael Corrêa Gomes">
12-
<meta name="robots" content="nofollow" />
1312
<meta name="description" content="Comandos Git, aprenda Git do básico ao avançado com tutorial para Windows, Mac e Linux (Ubuntu) usando as principais ferramentas como GitHub, BitBucket e GitLab">
14-
<meta name="keywords" content="git branch, git commit, git remote, comandos git, github, git merge, windows, mac, bitbucket, git, linux, ubuntu, debian, controle de verão, git add, git pull, git push, git remote">
13+
<meta name="keywords" content="git branch, git commit, git remote, comandos git, github, git merge, windows, mac, bitbucket, git, linux, ubuntu, debian, controle de versão, git add, git pull, git push, git remote">
1514
<link rel="canonical" href="https://comandosgit.github.io/">
15+
16+
<!-- Open Graph / Facebook -->
17+
<meta property="og:type" content="website">
18+
<meta property="og:url" content="https://comandosgit.github.io/">
19+
<meta property="og:title" content="Comandos Git - Aprenda Git do básico ao avançado">
20+
<meta property="og:description" content="Comandos Git, aprenda Git do básico ao avançado com tutorial para Windows, Mac e Linux (Ubuntu) usando as principais ferramentas como GitHub, BitBucket e GitLab">
21+
<meta property="og:image" content="https://comandosgit.github.io/img/comandos-git.png">
22+
<meta property="og:locale" content="pt_BR">
23+
24+
<!-- Twitter -->
25+
<meta property="twitter:card" content="summary_large_image">
26+
<meta property="twitter:url" content="https://comandosgit.github.io/">
27+
<meta property="twitter:title" content="Comandos Git - Aprenda Git do básico ao avançado">
28+
<meta property="twitter:description" content="Comandos Git, aprenda Git do básico ao avançado com tutorial para Windows, Mac e Linux (Ubuntu) usando as principais ferramentas como GitHub, BitBucket e GitLab">
29+
<meta property="twitter:image" content="https://comandosgit.github.io/img/comandos-git.png">
30+
31+
<!-- Theme Color for Mobile Browsers -->
32+
<meta name="theme-color" content="#ffffff">
1633
<!-- Latest compiled and minified CSS -->
1734
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
1835
<!-- Optional theme -->
@@ -25,6 +42,27 @@
2542
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
2643
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
2744
<![endif]-->
45+
<!-- JSON-LD Structured Data -->
46+
<script type="application/ld+json">
47+
{
48+
"@context": "https://schema.org",
49+
"@type": "WebSite",
50+
"name": "Comandos Git",
51+
"url": "https://comandosgit.github.io/",
52+
"description": "Comandos Git, aprenda Git do básico ao avançado com tutorial para Windows, Mac e Linux (Ubuntu) usando as principais ferramentas como GitHub, BitBucket e GitLab",
53+
"inLanguage": "pt-BR",
54+
"author": {
55+
"@type": "Person",
56+
"name": "Rafael Corrêa Gomes"
57+
},
58+
"publisher": {
59+
"@type": "Organization",
60+
"name": "Comandos Git",
61+
"url": "https://comandosgit.github.io/"
62+
}
63+
}
64+
</script>
65+
2866
<!-- Google Tag Manager -->
2967
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
3068
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],

robots.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
User-agent: *
2-
Sitemap: http://comandosgit.github.io/sitemap.xml
2+
Sitemap: https://comandosgit.github.io/sitemap.xml

sitemap.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@
77
<!-- created with Free Online Sitemap Generator www.xml-sitemaps.com -->
88

99
<url>
10-
<loc>http://comandosgit.github.io/</loc>
11-
<lastmod>2014-08-13T03:21:49+00:00</lastmod>
10+
<loc>https://comandosgit.github.io/</loc>
11+
<lastmod>2025-11-20T23:17:00+00:00</lastmod>
1212
<changefreq>monthly</changefreq>
13+
<priority>1.0</priority>
1314
</url>
1415
</urlset>

0 commit comments

Comments
 (0)