-
-
Notifications
You must be signed in to change notification settings - Fork 493
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 #166 from chrisrhymes/feature/follow-icons
Feature/follow icons
- Loading branch information
Showing
9 changed files
with
97 additions
and
4 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 |
---|---|---|
@@ -0,0 +1,52 @@ | ||
{% if site.social %} | ||
<div class="buttons is-centered mt-6 mb-6"> | ||
{% if site.social.facebook %} | ||
<a href="{{ site.social.facebook }}" class="button is-medium"> | ||
<span class="icon is-medium"> | ||
<i class="fa-brands fa-facebook fa-xl"></i> | ||
<span class="is-sr-only">Facebook</span> | ||
</span> | ||
</a> | ||
{% endif %} | ||
{% if site.social.instagram %} | ||
<a href="{{ site.social.instagram }}" class="button is-medium"> | ||
<span class="icon is-medium"> | ||
<i class="fa-brands fa-instagram fa-xl"></i> | ||
<span class="is-sr-only">Instagram</span> | ||
</span> | ||
</a> | ||
{% endif %} | ||
{% if site.social.threads %} | ||
<a href="{{ site.social.threads }}" class="button is-medium"> | ||
<span class="icon is-medium"> | ||
<i class="fa-brands fa-threads fa-xl"></i> | ||
<span class="is-sr-only">Threads</span> | ||
</span> | ||
</a> | ||
{% endif %} | ||
{% if site.social.tiktok %} | ||
<a href="{{ site.social.tiktok }}" class="button is-medium"> | ||
<span class="icon is-medium"> | ||
<i class="fa-brands fa-tiktok fa-xl"></i> | ||
<span class="is-sr-only">TikTok</span> | ||
</span> | ||
</a> | ||
{% endif %} | ||
{% if site.social.x %} | ||
<a href="{{ site.social.x }}" class="button is-medium"> | ||
<span class="icon is-medium"> | ||
<i class="fa-brands fa-x-twitter fa-xl"></i> | ||
<span class="is-sr-only">X/Twitter</span> | ||
</span> | ||
</a> | ||
{% endif %} | ||
{% if site.social.youtube %} | ||
<a href="{{ site.social.youtube }}" class="button is-medium"> | ||
<span class="icon is-medium"> | ||
<i class="fa-brands fa-youtube fa-xl"></i> | ||
<span class="is-sr-only">YouTube</span> | ||
</span> | ||
</a> | ||
{% endif %} | ||
</div> | ||
{% 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
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 |
---|---|---|
|
@@ -16,7 +16,13 @@ | |
<script | ||
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js.cookie.min.js" | ||
></script> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5/css/all.min.css"> | ||
<link | ||
rel="stylesheet" | ||
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" | ||
integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" | ||
crossorigin="anonymous" | ||
referrerpolicy="no-referrer" | ||
> | ||
{% unless site.hide_share_buttons %} | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma-social@1/bin/bulma-social.min.css"> | ||
{% endunless %} | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
Gem::Specification.new do |spec| | ||
spec.name = "bulma-clean-theme" | ||
spec.version = "1.0.4" | ||
spec.version = "1.1.0" | ||
spec.authors = ["chrisrhymes"] | ||
spec.email = ["[email protected]"] | ||
|
||
|
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
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