Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added favicon #6

Open
wants to merge 1 commit into
base: production
Choose a base branch
from
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
17 changes: 15 additions & 2 deletions header-meta.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,27 @@
{% endif %}
<meta property="og:type" content="{{ page.type | default: site.type | default: 'website' }}" />
<meta property="og:url" content="{{ site.url }}{{ page.url }}" />
{%- if site.author -%}
{%- if site.author %}
<meta name="author" content="{{ site.author.name }}" />
{%- if site.author.first-name %}
<meta property="profile:first_name" content="{{ site.author.first-name }}" />
{%- endif %}
{%- if site.author.last-name %}
<meta property="profile:last_name" content="{{ site.author.last-name }}" />
{%- endif %}
{%- if site.social.default-username -%}
{%- endif %}
{%- if site.social.default-username %}
<meta property="profile:username" content="{{ site.social.default-username }}" />
{%- endif %}

<link rel="apple-touch-icon" type="image/png" href="{{ site.url }}{{ site.baseurl | default: '' }}/_img/Icon%201.1.1%20(1024p).png" />
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico"/>
<link rel="shortcut icon" type="image/x-icon" href="{{ site.url }}{{ site.baseurl | default: '' }}/favicon.ico"/>
<link rel="shortcut icon" type="image/icns" href="/favicon.icns"/>
<link rel="shortcut icon" type="image/icns" href="{{ site.url }}{{ site.baseurl | default: '' }}/favicon.icns"/>
<link rel="shortcut icon" type="image/png" href="/favicon.png"/>
<link rel="shortcut icon" type="image/png" href="{{ site.url }}{{ site.baseurl | default: '' }}/favicon.png"/>

<meta name="twitter:card" content="summary_large_image" /><!-- Tell twitter that this link can be presented as a large image with a summary -->
<meta name="msapplication-TileImage" content="/images/MS-Tile-Image.png" /><!-- When pinned as a tile for Windows' Start, this is the image -->
<meta property="og:image" content="{{ page.social-preview-image-url | default: page.hero-image | default: site.social-preview-image-url | default: '/images/Social-Preview.png' }}" /><!-- Image for sharing on social networks -->
Expand Down