Skip to content

Commit 77d2c79

Browse files
committed
Added robots.txt and description
1 parent ff349c0 commit 77d2c79

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,6 @@ appsettings.Development.json
1111
*.pubxml
1212
*.pubxml.user
1313
*.publishproj
14-
*.suo
14+
*.suo
15+
sitemap.xml
16+
robots.txt
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
User-agent: *
2+
Disallow:
3+
Disallow: /cgi-bin/

Readme.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,24 @@ It is only one storage provider at a time allowed. Registering multiple will res
7070
## Authorization
7171
There is only one mechanism enabled via Auth0. For more information go to: https://auth0.com/docs/applications
7272

73-
The main advantage of Auth0 is the easy configurable dashboard on their website.
73+
The main advantage of Auth0 is the easy configurable dashboard on their website.
74+
75+
## Search Engine Optimization (SEO)
76+
The blog includes some of the most important tags to get indexed by a crawler. Furthermore some aspects of the Open Graph specification are implemented.
77+
78+
### Robots.txt
79+
In the wwwroot/ you can find a default robots.txt. It allows that the site gets completely indexed. If you want to tweak that behavior feel free.
80+
Also you can provide a sitemap.xml to get a better ranking.
81+
82+
### Open Graph Tags
83+
To get better results when for example shared via LinkedIn some of the `<meta property="og:tag">` tags are implemented.
84+
85+
The following tags are set depending on the page:
86+
87+
| Open Graph Tag | Index | Display Blog Post |
88+
|----------------|-----------------------------------------------------------|----------------------------------------------|
89+
| og:title | Title of the blog (defined in Introduction) | Title of the blogpost |
90+
| og:url | Url to the index page | Url of the page |
91+
| og:image | Background image (defined in Introduction) | Yes |
92+
| og:type | article | article |
93+
| og:description | Short description in plain text (defined in Introduction) | Short Description of Blog Post in plain text |

0 commit comments

Comments
 (0)