Merge pull request #45 from t404notfound/master

Add Gitea, XMPP, Matrix to social icons
This commit is contained in:
Dillon 2020-02-06 21:49:21 +08:00 committed by GitHub
commit 44222e7d12
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 23 additions and 1 deletions

View file

@ -248,6 +248,9 @@ dateFormatToUse = "2006-01-02"
#Mastodon = "xxxx"
#Thingiverse = "xxxx"
#Devto = "xxxx"
#Gitea = "xxxx"
#XMPP = "xxxx"
#Matrix ="xxxx"
# Social Share Links in post page
[params.share]

View file

@ -248,6 +248,9 @@ dateFormatToUse = "2006-01-02"
#Mastodon = "xxxx"
#Thingiverse = "xxxx"
#Devto = "xxxx"
#Gitea = "xxxx"
#XMPP = "xxxx"
#Matrix ="xxxx"
# 文章页面的分享信息设置
[params.share]

View file

@ -1,3 +1,4 @@
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/fork-awesome@1.1.7/css/fork-awesome.min.css" integrity="sha256-gsmEoJAws/Kd3CjuOQzLie5Q3yshhvmo7YNtBG7aaEY=" crossorigin="anonymous">
{{- with .Site.Params.Social.Github -}}
<a href="https://github.com/{{ . }}" rel="me noopener noreffer" target="_blank">
<i class="fab fa-github-alt fa-fw" title="Github"></i>
@ -283,6 +284,21 @@
<i class="far fa-envelope fa-fw" target="_blank" title="Email"></i>
</a>
{{- end -}}
{{- with .Site.Params.Social.Gitea}}
<a href="" rel="me noopener noreffer" target="_blank">
<i class="fab fa fa-gitea fa-fw" title="Gitea"></i>
</a>
{{- end -}}
{{- with .Site.Params.Social.XMPP}}
<a href="xmpp:{{ . }}" rel="me noopener noreffer" target="_blank">
<i class="fab fa fa-xmpp fa-fw" title="XMPP"></i>
</a>
{{- end -}}
{{- with .Site.Params.Social.Matrix}}
<a href="https://matrix.to/#/{{ . }}" rel="me noopener noreffer" target="_blank">
<i class="fab fa fa-matrix-org fa-fw" title="Matrix"></i>
</a>
{{- end -}}
{{- with .Site.Params.Social.Custom}}
{{- . | safeHTML -}}
{{- end -}}