diff options
| author | Darin Dimitroff <d@thecrazyones.agency> | 2017-01-17 17:16:36 +0200 |
|---|---|---|
| committer | Darin Dimitroff <d@thecrazyones.agency> | 2017-01-17 17:16:52 +0200 |
| commit | 5248a576a106552a71e720314299e7269d8f5bb5 (patch) | |
| tree | 1b3039845d6f3e1eb27827d8665e63accdc5c813 | |
| parent | 0115515eef708638ffe1c9c2d85ee5e479b35320 (diff) | |
Updates head partial and adds favicons
Renames “header” to “head”.
24 files changed, 92 insertions, 21 deletions
diff --git a/site/layouts/_default/list.html b/site/layouts/_default/list.html index ccef521..3c94597 100644 --- a/site/layouts/_default/list.html +++ b/site/layouts/_default/list.html @@ -1,4 +1,4 @@ -{{ partial "header" . }} +{{ partial "head" . }} {{ partial "nav" . }} {{ partial "jumbotron" (dict "imageUrl" "/img/blog-index.jpg" "title" "Latests stories") }} diff --git a/site/layouts/_default/single.html b/site/layouts/_default/single.html index 124e30d..2126d61 100644 --- a/site/layouts/_default/single.html +++ b/site/layouts/_default/single.html @@ -1,4 +1,4 @@ -{{ partial "header" . }} +{{ partial "head" . }} {{ partial "nav" . }} {{ partial "jumbotron" (dict "imageUrl" "/img/7.jpg" "title" "This is where the heading goes" "subtitle" "This is where the subtitle goes") }} {{ .Content }} diff --git a/site/layouts/contact/single.html b/site/layouts/contact/single.html index e145123..07e5ce4 100644 --- a/site/layouts/contact/single.html +++ b/site/layouts/contact/single.html @@ -1,4 +1,4 @@ -{{ partial "header" . }} +{{ partial "head" . }} {{ partial "nav" . }} diff --git a/site/layouts/index.html b/site/layouts/index.html index 158ddc6..6d4e1ff 100644 --- a/site/layouts/index.html +++ b/site/layouts/index.html @@ -1,4 +1,4 @@ -{{ partial "header" . }} +{{ partial "head" . }} {{ partial "nav" . }} diff --git a/site/layouts/partials/head.html b/site/layouts/partials/head.html new file mode 100644 index 0000000..6c5c593 --- /dev/null +++ b/site/layouts/partials/head.html @@ -0,0 +1,31 @@ +<!doctype html> +<html> + <head> + + <html lang="en-US"> + <title>{{.Title}} | Kaldi</title> + <link rel="stylesheet" href="/css/main.css"/> + + <meta charset="utf-8"> + <meta http-equiv="x-ua-compatible" content="ie=edge"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + + <link href="https://fonts.googleapis.com/css?family=Nunito+Sans:400,700" rel="stylesheet"> + + <!-- Favicons --> + <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"> + <link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32"> + <link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16"> + <link rel="manifest" href="/manifest.json"> + <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#ff4400"> + <meta name="theme-color" content="#fff"> + + <!-- Open Graph --> + <meta property="og:type" content="business.business"> + <meta property="og:title" content="Kaldi | Great coffee with a conscience"> + <meta property="og:url" content="http://kaldi.netlify.com/"> + <meta property="og:image" content="http://kaldi.netlify.com/og-image.jpg"> + + </head> + + <body class="sans-serif"> diff --git a/site/layouts/partials/header.html b/site/layouts/partials/header.html deleted file mode 100644 index bb80d33..0000000 --- a/site/layouts/partials/header.html +++ /dev/null @@ -1,14 +0,0 @@ -<!doctype html> -<html> - <head> - <title>{{.Title}} | Kaldi</title> - <link rel="stylesheet" href="/css/main.css"/> - - <meta charset="utf-8"> - <meta http-equiv="x-ua-compatible" content="ie=edge"> - <meta name="viewport" content="width=device-width, initial-scale=1"> - - <link href="https://fonts.googleapis.com/css?family=Nunito+Sans:400,700" rel="stylesheet"> - </head> - - <body class="sans-serif"> diff --git a/site/layouts/post/single.html b/site/layouts/post/single.html index e7198b3..4d6ea43 100644 --- a/site/layouts/post/single.html +++ b/site/layouts/post/single.html @@ -1,4 +1,4 @@ -{{ partial "header" . }} +{{ partial "head" . }} {{ partial "nav" . }} <div class="mw6 center ph3 pv4"> <h1 class="f2 lh-title b mb3">{{.Title}}</h1> diff --git a/site/layouts/products/single.html b/site/layouts/products/single.html index 81bef18..162c195 100644 --- a/site/layouts/products/single.html +++ b/site/layouts/products/single.html @@ -1,4 +1,4 @@ -{{ partial "header" . }} +{{ partial "head" . }} {{ partial "nav" . }} {{ partial "jumbotron" (dict "imageUrl" "/img/products/jumbotron.jpg" "title" "Products") }} diff --git a/site/layouts/values/single.html b/site/layouts/values/single.html index 0add0a7..552922a 100644 --- a/site/layouts/values/single.html +++ b/site/layouts/values/single.html @@ -1,4 +1,4 @@ -{{ partial "header" . }} +{{ partial "head" . }} {{ partial "nav" . }} {{ partial "jumbotron" (dict "imageUrl" "/img/about/jumbotron.jpg" "title" "Values") }} diff --git a/site/static/android-chrome-192x192.png b/site/static/android-chrome-192x192.png Binary files differnew file mode 100644 index 0000000..79b84dc --- /dev/null +++ b/site/static/android-chrome-192x192.png diff --git a/site/static/android-chrome-512x512.png b/site/static/android-chrome-512x512.png Binary files differnew file mode 100644 index 0000000..3c58dda --- /dev/null +++ b/site/static/android-chrome-512x512.png diff --git a/site/static/apple-touch-icon.png b/site/static/apple-touch-icon.png Binary files differnew file mode 100644 index 0000000..46afa7c --- /dev/null +++ b/site/static/apple-touch-icon.png diff --git a/site/static/browserconfig.xml b/site/static/browserconfig.xml new file mode 100644 index 0000000..b3926a3 --- /dev/null +++ b/site/static/browserconfig.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8"?>
+<browserconfig>
+ <msapplication>
+ <tile>
+ <square150x150logo src="/mstile-150x150.png"/>
+ <TileColor>#ff4400</TileColor>
+ </tile>
+ </msapplication>
+</browserconfig>
diff --git a/site/static/favicon-16x16.png b/site/static/favicon-16x16.png Binary files differnew file mode 100644 index 0000000..18985a3 --- /dev/null +++ b/site/static/favicon-16x16.png diff --git a/site/static/favicon-32x32.png b/site/static/favicon-32x32.png Binary files differnew file mode 100644 index 0000000..2d52eff --- /dev/null +++ b/site/static/favicon-32x32.png diff --git a/site/static/favicon.ico b/site/static/favicon.ico Binary files differnew file mode 100644 index 0000000..d055e90 --- /dev/null +++ b/site/static/favicon.ico diff --git a/site/static/manifest.json b/site/static/manifest.json new file mode 100644 index 0000000..80c5526 --- /dev/null +++ b/site/static/manifest.json @@ -0,0 +1,17 @@ +{ + "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", + "display": "standalone" +} diff --git a/site/static/mstile-144x144.png b/site/static/mstile-144x144.png Binary files differnew file mode 100644 index 0000000..2787c56 --- /dev/null +++ b/site/static/mstile-144x144.png diff --git a/site/static/mstile-150x150.png b/site/static/mstile-150x150.png Binary files differnew file mode 100644 index 0000000..edfb37f --- /dev/null +++ b/site/static/mstile-150x150.png diff --git a/site/static/mstile-310x150.png b/site/static/mstile-310x150.png Binary files differnew file mode 100644 index 0000000..abd262e --- /dev/null +++ b/site/static/mstile-310x150.png diff --git a/site/static/mstile-310x310.png b/site/static/mstile-310x310.png Binary files differnew file mode 100644 index 0000000..1873248 --- /dev/null +++ b/site/static/mstile-310x310.png diff --git a/site/static/mstile-70x70.png b/site/static/mstile-70x70.png Binary files differnew file mode 100644 index 0000000..ac78c21 --- /dev/null +++ b/site/static/mstile-70x70.png diff --git a/site/static/og-image.jpg b/site/static/og-image.jpg Binary files differnew file mode 100644 index 0000000..9d829cf --- /dev/null +++ b/site/static/og-image.jpg diff --git a/site/static/safari-pinned-tab.svg b/site/static/safari-pinned-tab.svg new file mode 100644 index 0000000..ac6b23d --- /dev/null +++ b/site/static/safari-pinned-tab.svg @@ -0,0 +1,28 @@ +<?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="M387 5763 c-1 -1 -24 -3 -52 -4 -155 -9 -269 -96 -319 -244 -15 -46 +-16 -145 -13 -1225 2 -646 6 -1188 10 -1205 4 -16 12 -59 18 -95 24 -136 69 +-300 112 -405 180 -439 480 -792 869 -1024 275 -164 565 -258 888 -288 97 -9 +1416 -9 1535 0 119 9 189 19 272 38 27 6 55 12 63 14 164 34 384 123 565 228 +177 103 448 336 555 477 19 25 37 47 40 50 17 15 104 148 151 230 97 169 175 +359 209 510 7 30 16 65 21 77 l8 22 59 -23 c84 -33 149 -48 272 -63 119 -15 +341 -3 420 22 10 3 28 8 41 10 82 16 294 118 387 188 79 58 181 155 228 213 +59 75 151 222 159 254 1 3 11 26 23 52 63 140 92 307 87 498 -2 69 -6 136 -9 +150 -3 14 -9 41 -12 60 -20 119 -96 297 -182 425 -143 212 -311 346 -572 459 +-44 19 -171 53 -225 60 -22 3 -60 8 -85 12 -140 19 -350 -5 -497 -56 l-53 -18 +-1 26 c0 15 -1 90 -3 167 -2 126 -5 146 -27 195 -33 71 -71 115 -134 155 -54 +34 -77 42 -141 51 -35 5 -4663 12 -4667 7z m5552 -1236 c80 -23 186 -92 241 +-155 210 -242 147 -625 -130 -786 -198 -115 -453 -86 -614 71 -83 80 -79 64 +-78 341 0 136 1 267 1 291 1 40 6 49 66 107 73 71 119 99 215 130 86 28 209 +28 299 1z"/> +</g> +</svg> |
