Skip to content

Commit

Permalink
fix images, links, add basic pwa
Browse files Browse the repository at this point in the history
  • Loading branch information
couleurm committed Mar 23, 2024
1 parent 44a7dd8 commit 92e09ac
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
5 changes: 3 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="manifest" href="pwa-manifest.json">
<link rel="stylesheet" href="styles.css">
<title>TweakList-UI</title>
<!--
Expand All @@ -17,7 +18,7 @@
<div class="nav">
<a href="https://ctt.cx" target="_blank">
<img
src="https://avatars.githubusercontent.com/u/82734468?s=200"
src="https://avatars.githubusercontent.com/u/82734468?s=38"
style="width: 38px; height: 38px; border-radius: 100%"
alt="CTT Logo"
>
Expand All @@ -34,7 +35,7 @@
<span style="margin: 0;">&ndash;</span>

<a
style="padding-left: 0" href="https://github.com/couleur-tweak-tips/TweakList"
style="padding-left: 0" href="https://github.com/couleur-tweak-tips/TweakList-UI"
target="_blank"
class="nav-link"
title="Repository for the source code of this website"
Expand Down
23 changes: 23 additions & 0 deletions pwa-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"short_name": "TLUI",
"name": "TweakList-UI",
"description": "Function builder for TweakList",
"icons": [
{
"src": "https://avatars.githubusercontent.com/u/82734468?s=192",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "https://avatars.githubusercontent.com/u/82734468?s=512",
"type": "image/png",
"sizes": "512x512"
}
],
"id": "/?source=pwa",
"start_url": "/?source=pwa",
"scope": "/",
"background_color": "#010409",
"theme_color": "#151b22",
"display": "standalone"
}

0 comments on commit 92e09ac

Please sign in to comment.