-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from t404notfound/master
Add Gitea, XMPP, Matrix to social icons
- Loading branch information
Showing
3 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
|
@@ -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 -}} |