-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: allow customize social network with partial template.
- Loading branch information
Showing
6 changed files
with
68 additions
and
34 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,30 @@ | ||
<div class="sy-foot-socials"> | ||
{%- if theme_readthedocs_url %} | ||
<a href="{{ theme_readthedocs_url }}" aria-label="Readthedocs"><i class="i-simpleicons readthedocs"></i></a> | ||
{%- endif %} | ||
{%- if theme_github_url %} | ||
<a href="{{ theme_github_url }}" aria-label="GitHub"><i class="i-simpleicons github"></i></a> | ||
{%- endif %} | ||
{%- if theme_gitlab_url %} | ||
<a href="{{ theme_gitlab_url }}" aria-label="Gitlab"><i class="i-simpleicons gitlab"></i></a> | ||
{%- endif %} | ||
{%- if theme_bitbucket_url %} | ||
<a href="{{ theme_bitbucket_url }}" aria-label="Bitbucket"><i class="i-simpleicons bitbucket"></i></a> | ||
{%- endif %} | ||
{%- if theme_twitter_url %} | ||
<a href="{{ theme_twitter_url }}" aria-label="X (Twitter)"><i class="i-simpleicons x-twitter"></i></a> | ||
{%- endif %} | ||
{%- if theme_mastodon_url %} | ||
<a href="{{ theme_mastodon_url }}" aria-label="Mastodon"><i class="i-simpleicons mastodon"></i></a> | ||
{%- endif %} | ||
{%- if theme_discord_url %} | ||
<a href="{{ theme_discord_url }}" aria-label="Discord"><i class="i-simpleicons discord"></i></a> | ||
{%- endif %} | ||
{%- if theme_youtube_url %} | ||
<a href="{{ theme_youtube_url }}" aria-label="YouTube"><i class="i-simpleicons youtube"></i></a> | ||
{%- endif %} | ||
{%- if theme_reddit_url %} | ||
<a href="{{ theme_reddit_url }}" aria-label="Reddit"><i class="i-simpleicons reddit"></i></a> | ||
{%- endif %} | ||
{%- if theme_linkedin_url %} | ||
<a href="{{ theme_linkedin_url }}" aria-label="LinkedIn"><i class="i-simpleicons linkedin"></i></a> | ||
{%- endif %} | ||
</div> | ||
{%- if theme_readthedocs_url %} | ||
<a href="{{ theme_readthedocs_url }}" aria-label="Readthedocs"><i class="i-simpleicons readthedocs"></i></a> | ||
{%- endif %} | ||
{%- if theme_github_url %} | ||
<a href="{{ theme_github_url }}" aria-label="GitHub"><i class="i-simpleicons github"></i></a> | ||
{%- endif %} | ||
{%- if theme_gitlab_url %} | ||
<a href="{{ theme_gitlab_url }}" aria-label="Gitlab"><i class="i-simpleicons gitlab"></i></a> | ||
{%- endif %} | ||
{%- if theme_bitbucket_url %} | ||
<a href="{{ theme_bitbucket_url }}" aria-label="Bitbucket"><i class="i-simpleicons bitbucket"></i></a> | ||
{%- endif %} | ||
{%- if theme_twitter_url %} | ||
<a href="{{ theme_twitter_url }}" aria-label="X (Twitter)"><i class="i-simpleicons x-twitter"></i></a> | ||
{%- endif %} | ||
{%- if theme_mastodon_url %} | ||
<a href="{{ theme_mastodon_url }}" aria-label="Mastodon"><i class="i-simpleicons mastodon"></i></a> | ||
{%- endif %} | ||
{%- if theme_discord_url %} | ||
<a href="{{ theme_discord_url }}" aria-label="Discord"><i class="i-simpleicons discord"></i></a> | ||
{%- endif %} | ||
{%- if theme_youtube_url %} | ||
<a href="{{ theme_youtube_url }}" aria-label="YouTube"><i class="i-simpleicons youtube"></i></a> | ||
{%- endif %} | ||
{%- if theme_reddit_url %} | ||
<a href="{{ theme_reddit_url }}" aria-label="Reddit"><i class="i-simpleicons reddit"></i></a> | ||
{%- endif %} | ||
{%- if theme_linkedin_url %} | ||
<a href="{{ theme_linkedin_url }}" aria-label="LinkedIn"><i class="i-simpleicons linkedin"></i></a> | ||
{%- endif %} |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<div class="sy-foot-socials"> | ||
{%- include "components/foot-socials.html" -%} | ||
</div> |
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