Skip to content

Commit

Permalink
Add web manifest, and some additional styles
Browse files Browse the repository at this point in the history
- Fixed some console errors that were popping up, ignoring 3rd party errors
  • Loading branch information
zalbright90 committed Jul 30, 2024
1 parent 7864a89 commit af40f55
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 3 deletions.
5 changes: 4 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0 shrink-to-fit=no">
<meta http-equiv="Permissions-Policy" content="accelerometer=(), ambient-light-sensor=(), autoplay=(), battery=(), camera=(), cross-origin-isolated=(), display-capture=(), document-domain=(), encrypted-media=(), execution-while-not-rendered=(), execution-while-out-of-viewport=(), fullscreen=(), geolocation=(), gyroscope=(), magnetometer=(), microphone=(), midi=(), navigation-override=(), payment=(), picture-in-picture=(), publickey-credentials-get=(), screen-wake-lock=(), sync-xhr=(), usb=(), web-share=(), xr-spatial-tracking=(), clipboard-read=(), clipboard-write=(), gamepad=(), speaker-selection=()">
<title>Hávamál Stanza of the Day</title>
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
<link rel="icon" type="favicon" sizes="32x32" href="favicon/favicon-32x32.png">
Expand Down Expand Up @@ -38,7 +39,9 @@ <h3>^ Runic transliteration ^</h3>
We believe that sharing this content in a non-commercial, educational setting falls under fair use/fair dealing provisions. However, we are committed to adhering to copyright laws and are actively seeking formal permission for this usage.
If you are the copyright holder and have any concerns or require further information, please <a href="mailto:[email protected]">contact us.</a></p>
</div>
<footer><p>2024 Hávamál Daily Stanza Project. All rights belong to the respective copyright holders.</p></footer>
<footer><p>2024 Hávamál Daily Stanza Project. All rights belong to the respective copyright holders.
<br>
Inspired by the Well of Urð at the roots of Yggdrasil, where the Norns weave the threads of fate and knowledge, fostering a community of wisdom and shared learning.</p></footer>
<script src="huginn.js" defer></script>
</body>
</html>
9 changes: 7 additions & 2 deletions muninn.css
Original file line number Diff line number Diff line change
Expand Up @@ -215,8 +215,13 @@ footer {
color: #cecece;
text-align: center;
width: 100%;
margin-top: 2rem;
padding: 1rem 0;
margin: 2rem auto;
padding: 1rem auto;
}

footer p {
width:75%;
margin: 0 auto;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
Expand Down
19 changes: 19 additions & 0 deletions site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "Hávamál Stanza of the Day",
"short_name": "Daily Hávamál Stanza",
"icons": [
{
"src": "favicon/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "favicon/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#5c0101",
"background_color": "#ffffff",
"display": "standalone"
}

0 comments on commit af40f55

Please sign in to comment.