Skip to content

Commit

Permalink
Merge pull request #45 from t404notfound/master
Browse files Browse the repository at this point in the history
Add Gitea, XMPP, Matrix to social icons
  • Loading branch information
dillonzq authored Feb 6, 2020
2 parents 8aae583 + 6d7e6ea commit 44222e7
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 1 deletion.
3 changes: 3 additions & 0 deletions exampleSite/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
3 changes: 3 additions & 0 deletions exampleSite/zh/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,9 @@ dateFormatToUse = "2006-01-02"
#Mastodon = "xxxx"
#Thingiverse = "xxxx"
#Devto = "xxxx"
#Gitea = "xxxx"
#XMPP = "xxxx"
#Matrix ="xxxx"

# 文章页面的分享信息设置
[params.share]
Expand Down
18 changes: 17 additions & 1 deletion layouts/partials/home/social.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/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>
Expand Down Expand Up @@ -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 -}}
{{- end -}}

0 comments on commit 44222e7

Please sign in to comment.