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

github.com/parsiya/Hugo-Octopress.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorParsia Hakimian <parsiya@users.noreply.github.com>2016-09-26 02:27:48 +0300
committerGitHub <noreply@github.com>2016-09-26 02:27:48 +0300
commitbb751da301b03fd3d3c7a4d8d47ce7a647d531df (patch)
tree66371a175aacbcaf2291980a37c7d35668068432
parentae46ea85084f2a7ac16e0999a1bad468e586ca77 (diff)
parent93b1035bf943cbc4aa4282bb78bb1647371e2bf6 (diff)
Merge pull request #25 from fixl/master
Add gitlab for sidebar links - Updated Font-Awesome version
-rw-r--r--README.md1
-rw-r--r--layouts/partials/header.html2
-rw-r--r--layouts/partials/sidebar.html1
3 files changed, 3 insertions, 1 deletions
diff --git a/README.md b/README.md
index 3052438..3cfe964 100644
--- a/README.md
+++ b/README.md
@@ -192,6 +192,7 @@ Sidebar links are read from the config file as follows:
[params]
github = "https://github.com/parsiya/"
bitbucket = "https://bitbucket.org/parsiya/"
+ gitlab = ""
twitter = "https://twitter.com/cryptogangsta/"
keybase = "https://keybase.io/parsiya/"
stackoverflow = ""
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index 30326ff..aa03383 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -28,7 +28,7 @@
{{ end }}
<!-- For sidebar icons - TODO: find local icons I guess-->
- <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.6.3/css/font-awesome.min.css">
<!-- Icons -->
<link href="{{ "/favicon.png" | absURL }}" rel="icon">
diff --git a/layouts/partials/sidebar.html b/layouts/partials/sidebar.html
index 1cb3fec..176edb3 100644
--- a/layouts/partials/sidebar.html
+++ b/layouts/partials/sidebar.html
@@ -25,6 +25,7 @@
<li class="sidebar-nav-item">
{{ with .Site.Params.github }}<a target="_blank" href="{{ . }}" title="{{ . }}"><i class="fa fa-github fa-3x"></i></a>{{ end }}
{{ with .Site.Params.bitbucket }}<a target="_blank" href="{{ . }}" title="{{ . }}"><i class="fa fa-bitbucket fa-3x"></i></a>{{ end }}
+ {{ with .Site.Params.gitlab }}<a target="_blank" href="{{ . }}" title="{{ . }}"><i class="fa fa-gitlab fa-3x"></i></a>{{ end }}
{{ with .Site.Params.twitter }}<a target="_blank" href="{{ . }}" title="{{ . }}"><i class="fa fa-twitter fa-3x"></i></a>{{ end }}
{{ with .Site.Params.keybase }}<a target="_blank" href="{{ . }}" title="{{ . }}"><i class="fa fa-key fa-3x"></i></a>{{ end }} <!-- added keybase -->
{{ with .Site.Params.linkedin }}<a target="_blank" href="{{ . }}" title="{{ . }}"><i class="fa fa-linkedin fa-3x"></i></a>{{ end }}