Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions app/default-files/default-themes/simple/partials/footer.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<div class="footer__social">
{{#if @config.custom.socialFacebook}}
<a href="{{@config.custom.socialFacebook}}" aria-label="Facebook">
<desc>Facebook</desc>
<svg>
<use xlink:href="{{@website.assetsUrl}}/svg/svg-map.svg#facebook"/>
</svg>
Expand All @@ -11,41 +12,47 @@
{{#if @config.custom.socialTwitter}}
<a href="{{@config.custom.socialTwitter}}" aria-label="Twitter">
<svg>
<desc>Twitter</desc>
<use xlink:href="{{@website.assetsUrl}}/svg/svg-map.svg#twitter"/>
</svg>
</a>
{{/if}}
{{#if @config.custom.socialInstagram}}
<a href="{{@config.custom.socialInstagram}}" aria-label="Instagram">
<svg>
<desc>Instagram</desc>
<use xlink:href="{{@website.assetsUrl}}/svg/svg-map.svg#instagram"/>
</svg>
</a>
{{/if}}
{{#if @config.custom.socialLinkedin}}
<a href="{{@config.custom.socialLinkedin}}" aria-label="LinkedIn">
<svg>
<desc>LinkedIn</desc>
<use xlink:href="{{@website.assetsUrl}}/svg/svg-map.svg#linkedin"/>
</svg>
</a>
{{/if}}
{{#if @config.custom.socialVimeo}}
<a href="{{@config.custom.socialVimeo}}" aria-label="Vimeo">
<svg>
<desc>Vimeo</desc>
<use xlink:href="{{@website.assetsUrl}}/svg/svg-map.svg#vimeo"/>
</svg>
</a>
{{/if}}
{{#if @config.custom.socialPinterest}}
<a href="{{@config.custom.socialPinterest}}" aria-label="Pinterest">
<svg>
<desc>Pinterest</desc>
<use xlink:href="{{@website.assetsUrl}}/svg/svg-map.svg#pinterest"/>
</svg>
</a>
{{/if}}
{{#if @config.custom.socialYoutube}}
<a href="{{@config.custom.socialYoutube}}" aria-label="Youtube">
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<a href="{{@config.custom.socialYoutube}}" aria-label="Youtube">
<a href="{{@config.custom.socialYoutube}}" aria-label="YouTube">

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's already four spaces indented, just like the rest. Is this a typo?

Copy link
Copy Markdown

@YasharF YasharF Feb 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@kousu kousu The case?

<svg>
<desc>YouTube</desc>
<use xlink:href="{{@website.assetsUrl}}/svg/svg-map.svg#youtube"/>
</svg>
</a>
Expand Down