From 4369ed76d232588c124070dad37ea135c532f7f7 Mon Sep 17 00:00:00 2001
From: Anson VanDoren <anson.vandoren@gmail.com>
Date: Mon, 13 Jan 2020 17:12:09 +0000
Subject: [PATCH] adding support for type in social links (#250)
---
exampleSite/config.toml | 7 +++++++
layouts/partials/home.html | 2 +-
CONTRIBUTORS.md | 1 +
3 files changed, 9 insertions(+), 1 deletions(-)
diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md
index 09e3d8d..b7dc7f6 100644
--- a/CONTRIBUTORS.md
+++ b/CONTRIBUTORS.md
@@ -53,3 +53,4 @@
- [KK](https://github.com/bebound)
- [Eli W. Hunter](https://github.com/elihunter173)
- [Víctor López](https://github.com/viticlick)
+- [Anson VanDoren](https://github.com/anson-vandoren)
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index 1d7a284..2a38e9b 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -80,6 +80,13 @@
icon = "fab fa-medium"
weight = 5
url = "https://medium.com/@johndoe"
+[[params.social]]
+ name = "RSS"
+ icon = "fas fa-rss"
+ weight = 6
+ url = "https://myhugosite.com/index.xml"
+ rel = "alternate"
+ type = "application/rss+xml"
[languages]
diff --git a/layouts/partials/home.html b/layouts/partials/home.html
index 91a832a..e6ab9ce 100644
--- a/layouts/partials/home.html
+++ b/layouts/partials/home.html
@@ -10,7 +10,7 @@
{{ range sort .}}
{{ if .icon }}
<li>
- <a href="{{ .url }}" aria-label="{{ .name }}" {{ if .rel }}rel="{{ .rel }}"{{ end }} {{ if .target }}target="{{ .target }}"{{ end }}>
+ <a href="{{ .url }}" aria-label="{{ .name }}" {{ if .rel }}rel="{{ .rel }}"{{ end }} {{ if .target }}target="{{ .target }}"{{ end }} {{ if .type }}type="{{ .type }}"{{ end }}>
<i class="{{ .icon }}" aria-hidden="true"></i>
</a>
</li>
--
Gitblit v1.10.0