diff options
author | Allan Wang <me@allanwang.ca> | 2019-04-25 17:01:10 -0700 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2019-04-25 17:56:13 -0700 |
commit | d26d3fe99d8d1b65e9b54efa1ac77e877223fb81 (patch) | |
tree | d062b235a42bba5df6d4fd9dd84cdf7dea989255 | |
parent | a95ff37eaa30106d08144023e1d6f56e0cd3e119 (diff) | |
download | frost-d26d3fe99d8d1b65e9b54efa1ac77e877223fb81.tar.gz frost-d26d3fe99d8d1b65e9b54efa1ac77e877223fb81.tar.bz2 frost-d26d3fe99d8d1b65e9b54efa1ac77e877223fb81.zip |
Update favicon
---
Test root directory favicon
Test head replacement
Use icon instead of shortcut icon
Remove stylesheet
Try minima
Replace style
Revert to jekyll
Update default
Add all remaining icons
Move favicon out
-rw-r--r-- | _layouts/default.html | 78 | ||||
-rw-r--r-- | favicon.ico | bin | 0 -> 15086 bytes | |||
-rw-r--r-- | favicon/android-chrome-192x192.png | bin | 0 -> 2216 bytes | |||
-rw-r--r-- | favicon/android-chrome-512x512.png | bin | 0 -> 6234 bytes | |||
-rw-r--r-- | favicon/apple-touch-icon.png | bin | 0 -> 2133 bytes | |||
-rw-r--r-- | favicon/browserconfig.xml | 9 | ||||
-rw-r--r-- | favicon/favicon-16x16.png | bin | 0 -> 556 bytes | |||
-rw-r--r-- | favicon/favicon-32x32.png | bin | 0 -> 667 bytes | |||
-rw-r--r-- | favicon/mstile-144x144.png | bin | 0 -> 1472 bytes | |||
-rw-r--r-- | favicon/mstile-150x150.png | bin | 0 -> 1490 bytes | |||
-rw-r--r-- | favicon/mstile-310x150.png | bin | 0 -> 1665 bytes | |||
-rw-r--r-- | favicon/mstile-310x310.png | bin | 0 -> 3041 bytes | |||
-rw-r--r-- | favicon/mstile-70x70.png | bin | 0 -> 1105 bytes | |||
-rw-r--r-- | favicon/safari-pinned-tab.svg | 27 | ||||
-rw-r--r-- | favicon/site.webmanifest | 19 |
15 files changed, 133 insertions, 0 deletions
diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 00000000..f8b9f991 --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,78 @@ +<!--See https://github.com/pages-themes/minimal/blob/master/_layouts/default.html--> +<!DOCTYPE html> +<html lang="{{ site.lang | default: "en-US" }}"> +<head> + <meta charset="UTF-8"> + <meta http-equiv="X-UA-Compatible" content="IE=edge"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + + {% seo %} + <link rel="stylesheet" href="{{ "/assets/css/style.css?v=" | append: site.github.build_revision | relative_url }}"> + + <!--Begin favicon--> + <link rel="apple-touch-icon" sizes="180x180" href="{{ '/favicon/apple-touch-icon.png' | relative_url }}"> + <link rel="icon" type="image/png" sizes="32x32" href="{{ '/favicon/favicon-32x32.png' | relative_url }}"> + <link rel="icon" type="image/png" sizes="16x16" href="{{ '/favicon/favicon-16x16.png' | relative_url }}"> + <link rel="manifest" href="{{ '/favicon/site.webmanifest' | relative_url }}"> + <link rel="mask-icon" href="{{ '/favicon/safari-pinned-tab.svg' | relative_url }}" color="#3b5998"> + <link rel="shortcut icon" href="{{ '/favicon.ico' | relative_url }}"> + <meta name="msapplication-TileColor" content="#da532c"> + <meta name="msapplication-config" content="{{ '/favicon/browserconfig.xml' | relative_url }}"> + <meta name="theme-color" content="#ffffff"> + <!--End favicon--> + <!--[if lt IE 9]> + <script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script> + <![endif]--> +</head> +<body> +<div class="wrapper"> + <header> + <h1><a href="{{ "/" | absolute_url }}">{{ site.title | default: site.github.repository_name }}</a></h1> + + {% if site.logo %} + <img src="{{site.logo | relative_url}}" alt="Logo" /> + {% endif %} + + <p>{{ site.description | default: site.github.project_tagline }}</p> + + {% if site.github.is_project_page %} + <p class="view"><a href="{{ site.github.repository_url }}">View the Project on GitHub <small>{{ site.github.repository_nwo }}</small></a></p> + {% endif %} + + {% if site.github.is_user_page %} + <p class="view"><a href="{{ site.github.owner_url }}">View My GitHub Profile</a></p> + {% endif %} + + {% if site.show_downloads %} + <ul class="downloads"> + <li><a href="{{ site.github.zip_url }}">Download <strong>ZIP File</strong></a></li> + <li><a href="{{ site.github.tar_url }}">Download <strong>TAR Ball</strong></a></li> + <li><a href="{{ site.github.repository_url }}">View On <strong>GitHub</strong></a></li> + </ul> + {% endif %} + </header> + <section> + + {{ content }} + + </section> + <footer> + {% if site.github.is_project_page %} + <p>This project is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p> + {% endif %} + <p><small>Hosted on GitHub Pages — Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p> + </footer> +</div> +<script src="{{ "/assets/js/scale.fix.js" | relative_url }}"></script> + {% if site.google_analytics %} + <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), + m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) + })(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); + ga('create', '{{ site.google_analytics }}', 'auto'); + ga('send', 'pageview'); + </script> +{% endif %} +</body> +</html>
\ No newline at end of file diff --git a/favicon.ico b/favicon.ico Binary files differnew file mode 100644 index 00000000..ec0bf22c --- /dev/null +++ b/favicon.ico diff --git a/favicon/android-chrome-192x192.png b/favicon/android-chrome-192x192.png Binary files differnew file mode 100644 index 00000000..49791799 --- /dev/null +++ b/favicon/android-chrome-192x192.png diff --git a/favicon/android-chrome-512x512.png b/favicon/android-chrome-512x512.png Binary files differnew file mode 100644 index 00000000..960b1818 --- /dev/null +++ b/favicon/android-chrome-512x512.png diff --git a/favicon/apple-touch-icon.png b/favicon/apple-touch-icon.png Binary files differnew file mode 100644 index 00000000..1fa3adf2 --- /dev/null +++ b/favicon/apple-touch-icon.png diff --git a/favicon/browserconfig.xml b/favicon/browserconfig.xml new file mode 100644 index 00000000..ed5dd798 --- /dev/null +++ b/favicon/browserconfig.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8"?> +<browserconfig> + <msapplication> + <tile> + <square150x150logo src="favicon/mstile-150x150.png"/> + <TileColor>#da532c</TileColor> + </tile> + </msapplication> +</browserconfig> diff --git a/favicon/favicon-16x16.png b/favicon/favicon-16x16.png Binary files differnew file mode 100644 index 00000000..e43b849d --- /dev/null +++ b/favicon/favicon-16x16.png diff --git a/favicon/favicon-32x32.png b/favicon/favicon-32x32.png Binary files differnew file mode 100644 index 00000000..bef47432 --- /dev/null +++ b/favicon/favicon-32x32.png diff --git a/favicon/mstile-144x144.png b/favicon/mstile-144x144.png Binary files differnew file mode 100644 index 00000000..5e4aa92d --- /dev/null +++ b/favicon/mstile-144x144.png diff --git a/favicon/mstile-150x150.png b/favicon/mstile-150x150.png Binary files differnew file mode 100644 index 00000000..da592590 --- /dev/null +++ b/favicon/mstile-150x150.png diff --git a/favicon/mstile-310x150.png b/favicon/mstile-310x150.png Binary files differnew file mode 100644 index 00000000..6dcf8af0 --- /dev/null +++ b/favicon/mstile-310x150.png diff --git a/favicon/mstile-310x310.png b/favicon/mstile-310x310.png Binary files differnew file mode 100644 index 00000000..c93cc9e1 --- /dev/null +++ b/favicon/mstile-310x310.png diff --git a/favicon/mstile-70x70.png b/favicon/mstile-70x70.png Binary files differnew file mode 100644 index 00000000..d2e06ef6 --- /dev/null +++ b/favicon/mstile-70x70.png diff --git a/favicon/safari-pinned-tab.svg b/favicon/safari-pinned-tab.svg new file mode 100644 index 00000000..a0b0fb4c --- /dev/null +++ b/favicon/safari-pinned-tab.svg @@ -0,0 +1,27 @@ +<?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="M3404 5926 c-27 -13 -74 -38 -104 -56 -30 -18 -68 -41 -85 -50 -16 +-10 -81 -47 -143 -84 -62 -36 -132 -77 -155 -90 -40 -22 -452 -263 -657 -384 +-128 -75 -158 -98 -183 -146 l-22 -41 0 -1940 0 -1940 22 -35 c42 -66 115 +-103 189 -96 71 7 122 44 160 116 17 33 18 88 19 1033 0 548 3 997 7 997 4 0 +31 -14 60 -31 51 -31 81 -48 151 -87 17 -11 276 -161 573 -335 298 -173 560 +-322 584 -330 53 -18 103 -12 154 16 117 65 133 225 32 314 -24 21 -61 47 -82 +59 -35 19 -979 567 -1254 729 -63 37 -135 79 -160 92 -25 14 -50 31 -55 38 -7 +8 -10 230 -10 625 l0 612 185 109 c102 60 221 130 265 155 44 25 94 53 110 63 +30 18 108 63 359 209 l140 81 30 -18 c39 -24 435 -254 861 -501 17 -10 71 -41 +120 -70 50 -29 133 -77 185 -108 52 -30 152 -88 221 -128 153 -89 197 -103 +264 -84 58 16 99 50 125 101 35 68 21 166 -31 218 -25 26 -241 161 -257 161 +-3 0 -13 6 -21 14 -9 7 -41 27 -71 43 -70 38 -94 52 -275 158 -176 104 -610 +356 -675 393 -25 14 -73 43 -108 64 -34 21 -64 38 -66 38 -2 0 -35 19 -72 42 +-164 100 -238 117 -330 74z"/> +</g> +</svg> diff --git a/favicon/site.webmanifest b/favicon/site.webmanifest new file mode 100644 index 00000000..1edcfeff --- /dev/null +++ b/favicon/site.webmanifest @@ -0,0 +1,19 @@ +{ + "name": "", + "short_name": "", + "icons": [ + { + "src": "android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "android-chrome-512x512.png", + "sizes": "512x512", + "type": "image/png" + } + ], + "theme_color": "#ffffff", + "background_color": "#ffffff", + "display": "standalone" +} |