jennex

Our Wedding Site
git clone git://git.alexkarle.com.com/jennex
Log | Files | Refs | README | LICENSE

commit b050b13c1d1ac9f87c2cf01912f69739fc3ef8ba (patch)
parent 06690bdc75a6502ae804f3affe93b26e34aee192
Author: Alex Karle <alex@alexkarle.com>
Date:   Sun,  6 Nov 2022 17:47:26 -0500

Add favicon to all pages

Used a little sed oneliner for the updates.. but again a templated HTML
page is looking REAL tempting right about now :)

Diffstat:
Mevent.html | 2++
Afavicon.ico | 2++
Mindex.html | 2++
Mlicense.html | 30+++++++++++++++++++++---------
Mregistry.html | 2++
Mrsvp.html | 2++
Astatic/favicon-16x16.png | 0
Astatic/favicon-32x32.png | 0
Astatic/favicon.ico | 0
Mstory.html | 2++
Mtravel.html | 2++
11 files changed, 35 insertions(+), 9 deletions(-)

diff --git a/event.html b/event.html @@ -4,6 +4,8 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <link rel="stylesheet" href="/style.css"> + <link rel="icon" type="image/png" sizes="32x32" href="/static/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="/static/favicon-16x16.png"> <title>Alex &amp; Jennie's Wedding</title> </head> diff --git a/favicon.ico b/favicon.ico @@ -0,0 +1 @@ +static/favicon.ico +\ No newline at end of file diff --git a/index.html b/index.html @@ -4,6 +4,8 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <link rel="stylesheet" href="/style.css"> + <link rel="icon" type="image/png" sizes="32x32" href="/static/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="/static/favicon-16x16.png"> <title>Alex &amp; Jennie's Wedding</title> </head> <body> diff --git a/license.html b/license.html @@ -4,6 +4,8 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <link rel="stylesheet" href="/style.css"> + <link rel="icon" type="image/png" sizes="32x32" href="/static/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="/static/favicon-16x16.png"> <title>Alex &amp; Jennie's Wedding</title> </head> <body> @@ -22,15 +24,25 @@ licensed under the <a href="/LICENSE">MIT license</a> and can be found <a href="https://git.sr.ht/~akarle/jennex">here</a>. </p> - <p> - One notable exception is the cursive font in the title, which is - the <a href="https://fonts.google.com/specimen/Allura">Allura - font</a>, licensed under the <a href="/static/OFL.txt">Open Font - License</a>. - </p> - <p> - Photos and content are not open source (all rights reserved). - </p> + <p>A few notable exceptions:</p> + <ul> + <li> + Photos and content are not open source (all rights reserved). + </li> + <li> + The cursive font in the title, which is the + <a href="https://fonts.google.com/specimen/Allura">Allura font</a>, + is licensed under the <a href="/static/OFL.txt">Open Font License</a>. + </li> + <li> + The favicon emoji is part of the + <a href="https://twemoji.twitter.com/">Twemoji</a> + project and is licensed under the + <a href="https://creativecommons.org/licenses/by/4.0/">CC-BY 4.0</a> + license. Thanks to <a href="https://favicon.io">favicon.io</a> + for making it easy to generate! + </li> + </ul> <footer>Copyright 2022, Alex Karle (<a href="license.html">License</a>)</footer> </body> </html> diff --git a/registry.html b/registry.html @@ -4,6 +4,8 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <link rel="stylesheet" href="/style.css"> + <link rel="icon" type="image/png" sizes="32x32" href="/static/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="/static/favicon-16x16.png"> <title>Alex &amp; Jennie's Wedding</title> </head> diff --git a/rsvp.html b/rsvp.html @@ -4,6 +4,8 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <link rel="stylesheet" href="/style.css"> + <link rel="icon" type="image/png" sizes="32x32" href="/static/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="/static/favicon-16x16.png"> <title>Alex &amp; Jennie's Wedding</title> </head> diff --git a/static/favicon-16x16.png b/static/favicon-16x16.png Binary files differ. diff --git a/static/favicon-32x32.png b/static/favicon-32x32.png Binary files differ. diff --git a/static/favicon.ico b/static/favicon.ico Binary files differ. diff --git a/story.html b/story.html @@ -4,6 +4,8 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <link rel="stylesheet" href="/style.css"> + <link rel="icon" type="image/png" sizes="32x32" href="/static/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="/static/favicon-16x16.png"> <title>Alex &amp; Jennie's Wedding</title> </head> diff --git a/travel.html b/travel.html @@ -4,6 +4,8 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <link rel="stylesheet" href="/style.css"> + <link rel="icon" type="image/png" sizes="32x32" href="/static/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="/static/favicon-16x16.png"> <title>Alex &amp; Jennie's Wedding</title> </head>