From ed531165841a1de9200782b00b99b174bf2289cd Mon Sep 17 00:00:00 2001 From: Minteck Date: Thu, 23 Dec 2021 19:41:25 +0100 Subject: Commit --- .gitignore | 2 +- .idea/deployment.xml | 32 +- .idea/jsLibraryMappings.xml | 10 +- .idea/sshConfigs.xml | 8 + .idea/vcs.xml | 10 +- .idea/webServers.xml | 14 + README.md | 16 +- dark.css | 20 + fonts/Nunito-Italic-VariableFont_wght.ttf | Bin 0 -> 279936 bytes fonts/Nunito-VariableFont_wght.ttf | Bin 0 -> 275436 bytes includes/header.php | 29 - tv/index.php | 1442 ++++++++++++++--------------- tv/intermission.php | 44 +- tv/watch.php | 52 +- 14 files changed, 844 insertions(+), 835 deletions(-) create mode 100644 .idea/sshConfigs.xml create mode 100644 .idea/webServers.xml create mode 100644 fonts/Nunito-Italic-VariableFont_wght.ttf create mode 100644 fonts/Nunito-VariableFont_wght.ttf diff --git a/.gitignore b/.gitignore index a49982d..0b1e287 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ -data/films +data/films data/durations.json \ No newline at end of file diff --git a/.idea/deployment.xml b/.idea/deployment.xml index 0a1f045..076c030 100644 --- a/.idea/deployment.xml +++ b/.idea/deployment.xml @@ -1,19 +1,15 @@ - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/jsLibraryMappings.xml b/.idea/jsLibraryMappings.xml index 1bec673..8ab19fa 100644 --- a/.idea/jsLibraryMappings.xml +++ b/.idea/jsLibraryMappings.xml @@ -1,6 +1,6 @@ - - - - - + + + + + \ No newline at end of file diff --git a/.idea/sshConfigs.xml b/.idea/sshConfigs.xml new file mode 100644 index 0000000..9ed49e4 --- /dev/null +++ b/.idea/sshConfigs.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml index 94a25f7..9661ac7 100644 --- a/.idea/vcs.xml +++ b/.idea/vcs.xml @@ -1,6 +1,6 @@ - - - - - + + + + + \ No newline at end of file diff --git a/.idea/webServers.xml b/.idea/webServers.xml new file mode 100644 index 0000000..62c0573 --- /dev/null +++ b/.idea/webServers.xml @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/README.md b/README.md index 67deeb8..7c9dadb 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ -# Familine Movies - -* Chemin d'installation attendu : `/mnt/faminema` - -## Installation -1. Copiez les fichiers dans le dossier `/mnt/faminema` -2. Renommez `data/films.demo` en `data/films` -3. Configurez votre serveur Web pour pointer le sous-domaine `cinema.` vers Familine Movies +# Familine Movies + +* Chemin d'installation attendu : `/mnt/faminema` + +## Installation +1. Copiez les fichiers dans le dossier `/mnt/faminema` +2. Renommez `data/films.demo` en `data/films` +3. Configurez votre serveur Web pour pointer le sous-domaine `cinema.` vers Familine Movies 4. C'est prêt ! \ No newline at end of file diff --git a/dark.css b/dark.css index 4ee8c92..854645a 100644 --- a/dark.css +++ b/dark.css @@ -1,3 +1,23 @@ +@font-face { + font-family: "Nunito"; + src: url("/fonts/Nunito-VariableFont_wght.ttf"); + font-weight: 125 950; + font-stretch: 75% 125%; + font-style: normal; +} + +@font-face { + font-family: "Nunito"; + src: url("/fonts/Nunito-Italic-VariableFont_wght.ttf"); + font-weight: 125 950; + font-stretch: 75% 125%; + font-style: italic; +} + +* { + font-family: "Nunito", sans-serif !important; +} + @media (prefers-color-scheme: dark) { #navigation-bar { border-bottom: 1px solid #252525 !important; diff --git a/fonts/Nunito-Italic-VariableFont_wght.ttf b/fonts/Nunito-Italic-VariableFont_wght.ttf new file mode 100644 index 0000000..97a40fa Binary files /dev/null and b/fonts/Nunito-Italic-VariableFont_wght.ttf differ diff --git a/fonts/Nunito-VariableFont_wght.ttf b/fonts/Nunito-VariableFont_wght.ttf new file mode 100644 index 0000000..edc20b8 Binary files /dev/null and b/fonts/Nunito-VariableFont_wght.ttf differ diff --git a/includes/header.php b/includes/header.php index 5522bbf..fffd3ea 100644 --- a/includes/header.php +++ b/includes/header.php @@ -97,40 +97,11 @@ require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/plus.php"; - - - - - - - - - - - -
-
-
- -
- Patientez encore 15 secondes... -
- -
- Achetez Familine Movies+ pour regarder vos films sans publicité et soutenir le développement de Familine Movies. En savoir plus... -
- - - - - -
-

Les effets spéciaux, pour les nuls 4K

-

2001 · Michel Baie

-

Comme d'habitude, Michel Baie met le paquet sur les effets spéciaux.

-
- - - - - - - - + + + + + + + + + + + + +
+
+
+ +
+ Patientez encore 15 secondes... +
+ +
+ Achetez Familine Movies+ pour regarder vos films sans publicité et soutenir le développement de Familine Movies. En savoir plus... +
+ + + + + +
+

Les effets spéciaux, pour les nuls 4K

+

2001 · Michel Baie

+

Comme d'habitude, Michel Baie met le paquet sur les effets spéciaux.

+
+ + + + + + + + diff --git a/tv/intermission.php b/tv/intermission.php index e9b9e06..1d0ddb6 100644 --- a/tv/intermission.php +++ b/tv/intermission.php @@ -1,23 +1,23 @@ -