diff options
| author | XhmikosR <[email protected]> | 2017-07-16 14:58:52 +0300 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2017-08-15 14:35:36 +0300 |
| commit | e9323459ab226d9eb0d15217707c1ce12cf490eb (patch) | |
| tree | 9214cc87c4c9da844bdc908328596004a2748e44 | |
| parent | aadf2dcd0345d22efef1d8394709881cb8c88119 (diff) | |
| download | bootstrap-e9323459ab226d9eb0d15217707c1ce12cf490eb.tar.xz bootstrap-e9323459ab226d9eb0d15217707c1ce12cf490eb.zip | |
New favicons.
Include everything for most browsers to work including Android.
Kept favicon.ico to the root dir.
Also added a manifest.json for PWA.
| -rw-r--r-- | _includes/favicons.html | 9 | ||||
| -rw-r--r-- | _includes/header.html | 6 | ||||
| -rw-r--r-- | apple-touch-icon.png | bin | 6140 -> 0 bytes | |||
| -rw-r--r-- | assets/img/favicons/android-chrome-192x192.png | bin | 0 -> 1935 bytes | |||
| -rw-r--r-- | assets/img/favicons/android-chrome-512x512.png | bin | 0 -> 8745 bytes | |||
| -rw-r--r-- | assets/img/favicons/apple-touch-icon.png | bin | 0 -> 1738 bytes | |||
| -rw-r--r-- | assets/img/favicons/browserconfig.xml | 11 | ||||
| -rw-r--r-- | assets/img/favicons/favicon-16x16.png | bin | 0 -> 310 bytes | |||
| -rw-r--r-- | assets/img/favicons/favicon-32x32.png | bin | 0 -> 491 bytes | |||
| -rw-r--r-- | assets/img/favicons/manifest.json | 22 | ||||
| -rw-r--r-- | assets/img/favicons/mstile-144x144.png | bin | 0 -> 1479 bytes | |||
| -rw-r--r-- | assets/img/favicons/mstile-150x150.png | bin | 0 -> 1428 bytes | |||
| -rw-r--r-- | assets/img/favicons/mstile-310x150.png | bin | 0 -> 1746 bytes | |||
| -rw-r--r-- | assets/img/favicons/mstile-310x310.png | bin | 0 -> 3085 bytes | |||
| -rw-r--r-- | assets/img/favicons/mstile-70x70.png | bin | 0 -> 1104 bytes | |||
| -rw-r--r-- | assets/img/favicons/safari-pinned-tab.svg | 20 |
16 files changed, 63 insertions, 5 deletions
diff --git a/_includes/favicons.html b/_includes/favicons.html new file mode 100644 index 000000000..97dab4ba8 --- /dev/null +++ b/_includes/favicons.html @@ -0,0 +1,9 @@ +<!-- Favicons --> +<link rel="apple-touch-icon" href="{{ site.baseurl }}/assets/img/favicons/apple-touch-icon.png" sizes="180x180"> +<link rel="icon" href="{{ site.baseurl }}/assets/img/favicons/favicon-32x32.png" sizes="32x32" type="image/png"> +<link rel="icon" href="{{ site.baseurl }}/assets/img/favicons/favicon-16x16.png" sizes="16x16" type="image/png"> +<link rel="manifest" href="{{ site.baseurl }}/assets/img/favicons/manifest.json"> +<link rel="mask-icon" href="{{ site.baseurl }}/assets/img/favicons/safari-pinned-tab.svg" color="#563d7c"> +<link rel="icon" href="{{ site.baseurl }}/favicon.ico"> +<meta name="msapplication-config" content="{{ site.baseurl }}/assets/img/favicons/browserconfig.xml"> +<meta name="theme-color" content="#563d7c"> diff --git a/_includes/header.html b/_includes/header.html index d9eac3db3..c7e5dbd9e 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -21,14 +21,10 @@ <!-- Documentation extras --> {% if page.layout == "docs" %} -<link rel="stylesheet" href="https://cdn.jsdelivr.net/docsearch.js/2/docsearch.min.css" /> +<link href="https://cdn.jsdelivr.net/docsearch.js/2/docsearch.min.css" rel="stylesheet"> {% endif %} <link href="{{ site.baseurl }}/assets/css/docs.min.css" rel="stylesheet"> -<!-- Favicons --> -<link rel="apple-touch-icon" href="{{ site.baseurl }}/apple-touch-icon.png"> -<link rel="icon" href="{{ site.baseurl }}/favicon.ico"> - <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), diff --git a/apple-touch-icon.png b/apple-touch-icon.png Binary files differdeleted file mode 100644 index b6b1e843b..000000000 --- a/apple-touch-icon.png +++ /dev/null diff --git a/assets/img/favicons/android-chrome-192x192.png b/assets/img/favicons/android-chrome-192x192.png Binary files differnew file mode 100644 index 000000000..547386f37 --- /dev/null +++ b/assets/img/favicons/android-chrome-192x192.png diff --git a/assets/img/favicons/android-chrome-512x512.png b/assets/img/favicons/android-chrome-512x512.png Binary files differnew file mode 100644 index 000000000..ebafe360f --- /dev/null +++ b/assets/img/favicons/android-chrome-512x512.png diff --git a/assets/img/favicons/apple-touch-icon.png b/assets/img/favicons/apple-touch-icon.png Binary files differnew file mode 100644 index 000000000..447cec2c4 --- /dev/null +++ b/assets/img/favicons/apple-touch-icon.png diff --git a/assets/img/favicons/browserconfig.xml b/assets/img/favicons/browserconfig.xml new file mode 100644 index 000000000..8b193171a --- /dev/null +++ b/assets/img/favicons/browserconfig.xml @@ -0,0 +1,11 @@ +--- +--- +<?xml version="1.0" encoding="utf-8"?> +<browserconfig> + <msapplication> + <tile> + <square150x150logo src="{{ site.baseurl }}/assets/img/favicons/mstile-150x150.png"/> + <TileColor>#563d7c</TileColor> + </tile> + </msapplication> +</browserconfig> diff --git a/assets/img/favicons/favicon-16x16.png b/assets/img/favicons/favicon-16x16.png Binary files differnew file mode 100644 index 000000000..5f7d11880 --- /dev/null +++ b/assets/img/favicons/favicon-16x16.png diff --git a/assets/img/favicons/favicon-32x32.png b/assets/img/favicons/favicon-32x32.png Binary files differnew file mode 100644 index 000000000..d752fd5d7 --- /dev/null +++ b/assets/img/favicons/favicon-32x32.png diff --git a/assets/img/favicons/manifest.json b/assets/img/favicons/manifest.json new file mode 100644 index 000000000..14cd52412 --- /dev/null +++ b/assets/img/favicons/manifest.json @@ -0,0 +1,22 @@ +--- +--- +{ + "name": "Bootstrap", + "short_name": "Bootstrap", + "icons": [ + { + "src": "{{ site.baseurl }}/assets/img/favicons/android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "{{ site.baseurl }}/assets/img/favicons/android-chrome-512x512.png", + "sizes": "512x512", + "type": "image/png" + } + ], + "start_url": "/", + "theme_color": "#563d7c", + "background_color": "#563d7c", + "display": "standalone" +} diff --git a/assets/img/favicons/mstile-144x144.png b/assets/img/favicons/mstile-144x144.png Binary files differnew file mode 100644 index 000000000..262a3c2e1 --- /dev/null +++ b/assets/img/favicons/mstile-144x144.png diff --git a/assets/img/favicons/mstile-150x150.png b/assets/img/favicons/mstile-150x150.png Binary files differnew file mode 100644 index 000000000..bb87faf74 --- /dev/null +++ b/assets/img/favicons/mstile-150x150.png diff --git a/assets/img/favicons/mstile-310x150.png b/assets/img/favicons/mstile-310x150.png Binary files differnew file mode 100644 index 000000000..2fc36a726 --- /dev/null +++ b/assets/img/favicons/mstile-310x150.png diff --git a/assets/img/favicons/mstile-310x310.png b/assets/img/favicons/mstile-310x310.png Binary files differnew file mode 100644 index 000000000..7f00d0c66 --- /dev/null +++ b/assets/img/favicons/mstile-310x310.png diff --git a/assets/img/favicons/mstile-70x70.png b/assets/img/favicons/mstile-70x70.png Binary files differnew file mode 100644 index 000000000..4da2de9e3 --- /dev/null +++ b/assets/img/favicons/mstile-70x70.png diff --git a/assets/img/favicons/safari-pinned-tab.svg b/assets/img/favicons/safari-pinned-tab.svg new file mode 100644 index 000000000..086866a17 --- /dev/null +++ b/assets/img/favicons/safari-pinned-tab.svg @@ -0,0 +1,20 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN" + "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"> +<svg version="1.0" xmlns="http://www.w3.org/2000/svg" + width="700.000000pt" height="700.000000pt" viewBox="0 0 700.000000 700.000000" + preserveAspectRatio="xMidYMid meet"> +<metadata> +Created by potrace 1.11, written by Peter Selinger 2001-2013 +</metadata> +<g transform="translate(0.000000,700.000000) scale(0.100000,-0.100000)" +fill="#000000" stroke="none"> +<path d="M975 6983 c-494 -88 -870 -467 -959 -965 -13 -72 -15 -404 -14 -2513 +0 -1970 3 -2446 13 -2515 46 -295 206 -564 445 -747 60 -46 164 -113 175 -113 +3 0 31 -13 62 -28 73 -35 146 -58 260 -82 84 -17 196 -18 2563 -16 2334 1 +2479 3 2545 19 39 10 77 20 85 22 74 18 226 87 310 139 92 58 255 209 298 276 +9 14 28 41 43 60 36 48 111 200 138 280 12 36 30 106 40 155 18 86 19 188 17 +2570 l-1 2480 -27 95 c-52 188 -106 300 -207 434 -170 225 -400 372 -691 442 +-71 17 -200 18 -2545 20 -2111 2 -2482 0 -2550 -13z"/> +</g> +</svg> |
