Skip to content

Commit

Permalink
add favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-c committed Oct 28, 2015
1 parent b55c3db commit 7be554f
Show file tree
Hide file tree
Showing 20 changed files with 32 additions and 0 deletions.
Binary file added _static/apple-touch-icon-114x114.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/apple-touch-icon-120x120.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/apple-touch-icon-144x144.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/apple-touch-icon-152x152.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/apple-touch-icon-57x57.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/apple-touch-icon-60x60.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/apple-touch-icon-72x72.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/apple-touch-icon-76x76.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/favicon-128.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/favicon-16x16.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/favicon-196x196.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/favicon-32x32.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/favicon-96x96.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/favicon.ico
Binary file not shown.
Binary file added _static/mstile-144x144.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/mstile-150x150.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/mstile-310x150.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/mstile-310x310.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/mstile-70x70.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 32 additions & 0 deletions _templates/page.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{%- extends "!page.html" %}
{%- block extrahead %}
{{ super() }}

<link rel="apple-touch-icon-precomposed" sizes="57x57" href="{{ pathto('_static/apple-touch-icon-57x57.png', 1) }}" />
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="{{ pathto('_static/apple-touch-icon-114x114.png', 1) }}" />
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="{{ pathto('_static/apple-touch-icon-72x72.png', 1) }}" />
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ pathto('_static/apple-touch-icon-144x144.png', 1) }}" />
<link rel="apple-touch-icon-precomposed" sizes="60x60" href="{{ pathto('_static/apple-touch-icon-60x60.png', 1) }}" />
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="{{ pathto('_static/apple-touch-icon-120x120.png', 1) }}" />
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="{{ pathto('_static/apple-touch-icon-76x76.png', 1) }}" />
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="{{ pathto('_static/apple-touch-icon-152x152.png', 1) }}" />
<link rel="icon" type="image/png" href="{{ pathto('_static/favicon-196x196.png', 1) }}" sizes="196x196" />
<link rel="icon" type="image/png" href="{{ pathto('_static/favicon-96x96.png', 1) }}" sizes="96x96" />
<link rel="icon" type="image/png" href="{{ pathto('_static/favicon-32x32.png', 1) }}" sizes="32x32" />
<link rel="icon" type="image/png" href="{{ pathto('_static/favicon-16x16.png', 1) }}" sizes="16x16" />
<link rel="icon" type="image/png" href="{{ pathto('_static/favicon-128.png', 1) }}" sizes="128x128" />
<meta name="application-name" content="MRC's CWL Snippets"/>
<meta name="msapplication-TileColor" content="#FFFFFF" />
<meta name="msapplication-TileImage" content="{{ pathto('_static/mstile-144x144.png', 1) }}" />
<meta name="msapplication-square70x70logo" content="{{ pathto('_static/mstile-70x70.png', 1) }}" />
<meta name="msapplication-square150x150logo" content="{{ pathto('_static/mstile-150x150.png', 1) }}" />
<meta name="msapplication-wide310x150logo" content="{{ pathto('_static/mstile-310x150.png', 1) }}" />
<meta name="msapplication-square310x310logo" content="{{ pathto('_static/mstile-310x310.png', 1) }}" />

{% endblock %}

{% block body %}
{{ super() }}
{% endblock %}


0 comments on commit 7be554f

Please sign in to comment.