-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
25 additions
and
29 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,38 +1,25 @@ | ||
<div class="page__footer-follow"> | ||
<ul class="social-icons"> | ||
<!-- | ||
{% if site.data.ui-text[site.locale].follow_label %} | ||
<li><strong>{{ site.data.ui-text[site.locale].follow_label }}</strong></li> | ||
{% endif %} | ||
|
||
{% if site.footer.links %} | ||
{% for link in site.footer.links %} | ||
{% if link.label and link.url %} | ||
<li><a href="{{ link.url }}" rel="nofollow noopener noreferrer"><i class="{{ link.icon | default: 'fas fa-link' }}" aria-hidden="true"></i> {{ link.label }}</a></li> | ||
{% endif %} | ||
{% endfor %} | ||
{% endif %} | ||
{% for link in site.footer.links %} | ||
{% if link.label and link.url %} | ||
<li><a href="{{ link.url }}" rel="nofollow noopener noreferrer"><i class="{{ link.icon | default: 'fas fa-link' }}" aria-hidden="true"></i> {{ link.label }}</a></li> | ||
{% else %} | ||
<li>Missing label or url for a link</li> | ||
{% endif %} | ||
{% endfor %} | ||
{% else %} | ||
<li>No footer links found</li> | ||
{% endif %} | ||
|
||
{% unless site.atom_feed.hide %} | ||
<li><a href="{% if site.atom_feed.path %}{{ site.atom_feed.path }}{% else %}{{ '/feed.xml' | relative_url }}{% endif %}"><i class="fas fa-fw fa-rss-square" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].feed_label | default: "Feed" }}</a></li> | ||
{% endunless %} | ||
--> | ||
<a href="https://twitter.com/BsidesORL" itemprop="sameAs" rel="nofollow noopener noreferrer me"> | ||
<i class="fab fa-fw fa-twitter-square" aria-hidden="true"></i><span class="label">Twitter</span> | ||
</a> | ||
<a href="https://www.facebook.com/BsidesORL" itemprop="sameAs" rel="nofollow noopener noreferrer me"> | ||
<i class="fab fa-fw fa-facebook-square" aria-hidden="true"></i><span class="label">Facebook</span> | ||
</a> | ||
<a href="https://www.linkedin.com/company/bsidesorl/" itemprop="sameAs" rel="nofollow noopener noreferrer me"> | ||
<i class="fab fa-fw fa-linkedin" aria-hidden="true"></i><span class="label">LinkedIn</span> | ||
</a> | ||
<a href="https://instagram.com/bsidesorl" itemprop="sameAs" rel="nofollow noopener noreferrer me"> | ||
<i class="fab fa-fw fa-instagram" aria-hidden="true"></i><span class="label">Instagram</span> | ||
</a> | ||
<a href="https://www.youtube.com/channel/UC6avYrvlXYAKHCBdxjj9L0w" itemprop="sameAs" rel="nofollow noopener noreferrer me"> | ||
<i class="fab fa-fw fa-youtube" aria-hidden="true"></i><span class="label">YouTube</span> | ||
</a> | ||
</ul> | ||
</div> | ||
<br> | ||
<div class="page__footer-copyright">© {{ site.time | date: '%Y' }} {{ site.description}}. {{ site.data.ui-text[site.locale].powered_by | default: "Powered by" }} <a href="https://jekyllrb.com" rel="nofollow">Jekyll</a> & <a href="https://mademistakes.com/work/minimal-mistakes-jekyll-theme/" rel="nofollow">Minimal Mistakes</a>.</div> | ||
|
||
<div class="page__footer-copyright">© {{ site.time | date: '%Y' }} <a href="{{ site.copyright_url | default: site.url }}">{{ site.copyright | default: site.title }}</a>. {{ site.data.ui-text[site.locale].powered_by | default: "Powered by" }} <a href="https://jekyllrb.com" rel="nofollow">Jekyll</a> & <a href="https://mademistakes.com/work/jekyll-themes/minimal-mistakes/" rel="nofollow">Minimal Mistakes</a>.</div> |