Add icons for soundcloud and wikipedia

Add icons for soundcloud and wikipedia user links
This commit is contained in:
Michael Romero 2016-04-13 00:22:23 -07:00
parent 991e2aeaf7
commit ecb7e949e7
3 changed files with 23 additions and 1 deletions

View File

@ -18,6 +18,8 @@ pygmentsUseClasses = true
twitter = "username" twitter = "username"
linkedin = "pub/username/X/YYY/ZZZ" linkedin = "pub/username/X/YYY/ZZZ"
stackoverflow = "XXXXXXX/username" stackoverflow = "XXXXXXX/username"
soundcloud = "username"
wikipedia = "username"
[[menu.main]] [[menu.main]]
name = "Blog" name = "Blog"

View File

@ -62,6 +62,26 @@
</span> </span>
</a> </a>
</li> </li>
{{ end }}
{{ if .Site.Author.soundcloud }}
<li>
<a href="https://soundcloud.com/{{ .Site.Author.soundcloud }}" title="SoundCloud">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-soundcloud fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
{{ end }}
{{ if .Site.Author.wikipedia }}
<li>
<a href="https://wikipedia.org/wiki/User:{{ .Site.Author.wikipedia }}" title="Wikipedia">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-wikipedia-w fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
{{ end }} {{ end }}
<li> <li>

View File

@ -15,7 +15,7 @@
<link rel="alternate" href="{{ "/index.xml" | absURL }}" type="application/rss+xml" title="{{ .Site.Title }}"> <link rel="alternate" href="{{ "/index.xml" | absURL }}" type="application/rss+xml" title="{{ .Site.Title }}">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" /> <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/bootstrap.min.css" /> <link rel="stylesheet" href="{{ .Site.BaseURL }}css/bootstrap.min.css" />
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/main.css" /> <link rel="stylesheet" href="{{ .Site.BaseURL }}css/main.css" />
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic" /> <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic" />