commit 8fe60c3b3e1b715d71cf3cc10acc2048f5c3edc8 Author: Christer Warén Date: Wed May 18 12:43:34 2022 +0300 Initial Commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f13ae4e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/app/ diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..11d0bbb --- /dev/null +++ b/.htaccess @@ -0,0 +1,33 @@ +ServerSignature off + +#Deny displaying directory tree +IndexIgnore */* +Options -Indexes + + +RewriteEngine On +RewriteBase / + +RewriteCond %{HTTP_HOST} ^www.opiskelijaradio.fi$ [OR] +RewriteCond %{HTTP_HOST} ^opiskelijaradio.com$ [OR] +RewriteCond %{HTTP_HOST} ^www.opiskelijaradio.com$ +RewriteRule ^(.*)$ https://opiskelijaradio.fi/$1 [R=301,QSA,NC,L] + +RewriteCond %{HTTP_HOST} ^www.h.opiskelijaradio.fi$ [OR] +RewriteCond %{HTTP_HOST} ^h.opiskelijaradio.com$ [OR] +RewriteCond %{HTTP_HOST} ^www.h.opiskelijaradio.com$ +RewriteRule ^(.*)$ https://h.opiskelijaradio.fi/$1 [R=301,QSA,NC,L] + +RewriteCond %{HTTP_HOST} ^www.y.opiskelijaradio.fi$ [OR] +RewriteCond %{HTTP_HOST} ^y.opiskelijaradio.com$ [OR] +RewriteCond %{HTTP_HOST} ^www.y.opiskelijaradio.com$ +RewriteRule ^(.*)$ https://y.opiskelijaradio.fi/$1 [R=301,QSA,NC,L] + +RewriteCond %{REQUEST_FILENAME} !-f +RewriteCond %{REQUEST_FILENAME} !-d +RewriteRule ^(.*)$ / [R=307,NC,L,QSA] + + + +#(c)2020-2022 Waren Group +#Last updated: 24.4.2022 diff --git a/assets/images/favicon.png b/assets/images/favicon.png new file mode 100644 index 0000000..69662aa Binary files /dev/null and b/assets/images/favicon.png differ diff --git a/assets/images/favicon.svg b/assets/images/favicon.svg new file mode 100644 index 0000000..d8c971a --- /dev/null +++ b/assets/images/favicon.svg @@ -0,0 +1,239 @@ + + + + + Opiskelijaradio – Logo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Opiskelijaradio – Logo + 2022-04-22 + + + Christer Warén + + + + + Warén Group + + + + + + diff --git a/assets/images/pwa.png b/assets/images/pwa.png new file mode 100644 index 0000000..fdb5c81 Binary files /dev/null and b/assets/images/pwa.png differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..e7a0078 --- /dev/null +++ b/index.html @@ -0,0 +1,154 @@ + + + + Satakunnan opiskelijaradio + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+

Satakunnan opiskelijaradio

+

Tehdään yhdessä satakuntalainen opiskelijaradio!

+
+ +
+ +
+

Tämän sivuston sinulle tarjoaa
Warén Group

+
+
+ + + diff --git a/pwa.json b/pwa.json new file mode 100644 index 0000000..ed10157 --- /dev/null +++ b/pwa.json @@ -0,0 +1,24 @@ +{ + "name": "Satakunnan opiskelijaradio", + "short_name": "Satakunnan opiskelijaradio", + "description": "Tehdään yhdessä satakuntalainen opiskelijaradio!", + "start_url": "index.html", + "id": "satakunnan-opiskelijaradio", + "display": "standalone", + "background_color": "#0080bf", + "theme_color": "#0080bf", + "icons": [ + { + "src": "assets/images/favicon.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "assets/images/pwa.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "maskable" + } + ], + "categories": ["education", "entertainment", "lifestyle", "music", "news"] +}