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

github.com/dplesca/purehugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYanis Guenane <yanis@guenane.org>2018-01-20 18:47:53 +0300
committerYanis Guenane <yanis@guenane.org>2018-01-20 18:47:53 +0300
commit98f39078bb52038933831ea98a584b3d6e24aa08 (patch)
tree3d586e1d817e4e198f011aa9be325756101f3d98
parent301d2dcbb298ed2608a86715a1da8e1c4fcf7779 (diff)
Add the option to hide text next to icons
This commit aims to be able to enable/disable the text next to the icons on the sidebar. So one can either display icon + text or simply icon.
-rw-r--r--README.md11
-rw-r--r--layouts/partials/sidebar.html28
2 files changed, 30 insertions, 9 deletions
diff --git a/README.md b/README.md
index 99a4d0d..d226d7b 100644
--- a/README.md
+++ b/README.md
@@ -55,5 +55,16 @@ If you would like to hide the share options in the single post view, you can add
hideShareOptions = true
```
+### Hide Sidebar icons text Options
+
+
+If you would like to hide the text next to the icons on the sidebar, you can add this option in the `params` section of your config file.
+
+```toml
+[params]
+ # ... other options ...
+ hideSidebarIconText = true
+```
+
### Screenshot
![Screenshot](http://i.imgur.com/Dsj41Rz.png)
diff --git a/layouts/partials/sidebar.html b/layouts/partials/sidebar.html
index 06ea59f..35a71f5 100644
--- a/layouts/partials/sidebar.html
+++ b/layouts/partials/sidebar.html
@@ -7,28 +7,38 @@
<nav class="nav">
<ul class="nav-list">
- {{ with .Site.Params.twitterName }}
+ {{ if .Site.Params.twitterName }}
<li class="nav-item">
- <a class="pure-button" href="https://twitter.com/{{ . }}"><i class="fa fa-twitter"></i> Twitter</a>
+ <a class="pure-button" href="https://twitter.com/{{ .Site.Params.twitterName }}">
+ <i class="fa fa-twitter"></i>{{ if not .Site.Params.hideSidebarIconText }} Twitter{{ end }}
+ </a>
</li>
{{ end }}
- {{ with .Site.Params.githubName }}
+ {{ if .Site.Params.githubName }}
<li class="nav-item">
- <a class="pure-button" href="https://github.com/{{ . }} "><i class="fa fa-github-alt"></i> github</a>
+ <a class="pure-button" href="https://github.com/{{ .Site.Params.githubName }}">
+ <i class="fa fa-github-alt"></i>{{ if not .Site.Params.hideSidebarIconText }} Github{{ end }}
+ </a>
</li>
{{ end }}
- {{ with .Site.Params.stackOverflowId }}
+ {{ if .Site.Params.stackOverflowId }}
<li class="nav-item">
- <a class="pure-button" href="https://stackoverflow.com/u/{{ . }} "><i class="fa fa-stack-overflow"></i> Stack Overflow</a>
+ <a class="pure-button" href="https://stackoverflow.com/u/{{ .Site.Params.stackOverflowId }}">
+ <i class="fa fa-stack-overflow"></i>{{ if not .Site.Params.hideSidebarIconText }}Stack Overflow{{ end }}
+ </a>
</li>
{{ end }}
- {{ with .Site.Params.linkedinName }}
+ {{ if .Site.Params.linkedinName }}
<li class="nav-item">
- <a class="pure-button" href="https://www.linkedin.com/in/{{ . }} "><i class="fa fa-linkedin"></i> LinkedIn</a>
+ <a class="pure-button" href="https://www.linkedin.com/in/{{ .Site.Params.linkedinName }}">
+ <i class="fa fa-linkedin"></i>{{ if not .Site.Params.hideSidebarIconText }} LinkedIn{{ end }}
+ </a>
</li>
{{ end }}
<li class="nav-item">
- <a class="pure-button" href="{{ .Site.BaseURL }}/index.xml"><i class="fa fa-rss"></i> rss</a>
+ <a class="pure-button" href="{{ .Site.BaseURL }}/index.xml">
+ <i class="fa fa-rss"></i>{{ if not .Site.Params.hideSidebarIconText }} rss{{ end }}
+ </a>
</li>
</ul>
</nav>