Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wd/hugo-fabric.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwd <wd@wdicc.com>2019-04-22 04:56:46 +0300
committerGitHub <noreply@github.com>2019-04-22 04:56:46 +0300
commit65c393592d1165cd6a0e00c14a208010a5d5932a (patch)
treea8ff5fb27fb10e736d2a1a49095958ed4b015491
parentbef8762bb59d59c90eaa19d5648d5dd1746df74a (diff)
parentb6b2b965bea5743eec0e893bfb69cc9213394fe5 (diff)
Merge pull request #5 from tommorris/patch-1
Adds rel-me to social links
-rw-r--r--layouts/partials/social.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/layouts/partials/social.html b/layouts/partials/social.html
index b4c9407..cfb370e 100644
--- a/layouts/partials/social.html
+++ b/layouts/partials/social.html
@@ -2,49 +2,49 @@
{{ if .theme.github_user }}
<!-- GitHub -->
<li>
- <a href="https://github.com/{{ .theme.github_user }}" class="github" title="Github"></a>
+ <a href="https://github.com/{{ .theme.github_user }}" rel="me" class="github" title="Github"></a>
</li>
{{ end }}
{{ if .theme.googleplus_user }}
<!-- Google Plus -->
<li>
- <a href="http://plus.google.com/{{ .theme.googleplus_user }}?rel=author" class="google" title="Google+"></a>
+ <a href="http://plus.google.com/{{ .theme.googleplus_user }}?rel=author" rel="me" class="google" title="Google+"></a>
</li>
{{ end }}
{{ if .theme.facebook_user }}
<!-- Facebook -->
<li>
- <a href="http://www.facebook.com/{{ .theme.facebook_user }}" class="facebook" title="Facebook"></a>
+ <a href="http://www.facebook.com/{{ .theme.facebook_user }}" rel="me" class="facebook" title="Facebook"></a>
</li>
{{ end }}
{{ if .theme.twitter_user }}
<!-- Twitter -->
<li>
- <a href="http://www.twitter.com/{{ .theme.twitter_user }}" class="twitter" title="Twitter"></a>
+ <a href="http://www.twitter.com/{{ .theme.twitter_user }}" rel="me" class="twitter" title="Twitter"></a>
</li>
{{ end }}
{{ if .theme.linkedin_user }}
<!-- LinkedIn -->
<li>
- <a href="http://www.linkedin.com/in/{{ .theme.linkedin_user }}" class="linkedin" title="LinkedIn"></a>
+ <a href="http://www.linkedin.com/in/{{ .theme.linkedin_user }}" rel="me" class="linkedin" title="LinkedIn"></a>
</li>
{{ end }}
{{ if .theme.skype_user }}
<!-- Skype -->
<li>
- <a href="http://myskype.info/{{ .theme.skype_user }}" class="skype" title="Skype"></a>
+ <a href="http://myskype.info/{{ .theme.skype_user }}" rel="me" class="skype" title="Skype"></a>
</li>
{{ end }}
{{ if .theme.youtube_user }}
<!-- Youtube -->
<li>
- <a href="http://youtube.com/user/{{ .theme.youtube_user }}" class="youtube" title="Youtube"></a>
+ <a href="http://youtube.com/user/{{ .theme.youtube_user }}" rel="me" class="youtube" title="Youtube"></a>
</li>
{{ end }}
{{ if .theme.lastfm_user }}
<!-- LastFM -->
<li>
- <a href="http://www.lastfm.com/user/{{ .theme.lastfm_user }}" class="lastfm" title="LastFM"></a>
+ <a href="http://www.lastfm.com/user/{{ .theme.lastfm_user }}" rel="me" class="lastfm" title="LastFM"></a>
</li>
{{ end }}
</ul>