This commit is contained in:
Alexandre MOTTIER 2024-10-14 13:32:40 +02:00
parent cf96f3c345
commit 86a2c5a723
132 changed files with 473 additions and 2 deletions

BIN
DesignEvo-Transparent.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 KiB

BIN
LaPopulaire-Landscape.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

BIN
LaPopulaire.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

BIN
LaPopulaire2024.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

View File

@ -1,2 +1 @@
# LaPopulaire-Website
# LaPopulaire-Website

59
actu.php Normal file
View File

@ -0,0 +1,59 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>La Pop'ulaire - Le meilleur de la scène française et internationale</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Prompt&display=swap">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="apple-touch-icon" sizes="180x180" href="icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="icons/favicon-16x16.png">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<link rel="manifest" href="site.webmanifest">
<link rel="icon" type="image/x-icon" href="icons/favicon.ico">
</head>
<body>
<header>
<img src="LaPopulaire-Landscape.png" width="58%">
</header>
<nav>
<ul class="menu">
<li><a href="index.php">Accueil</a></li>
<li><a href="historique.php">Derniers titres diffusés</a></li>
<li><a href="demande.php">Demande de chanson</a></li>
<li><a href="actu.php"><u>Dernières actualités</u></a></li>
</ul>
<a href="javascript:void(0);" class="icon" onclick="mob()"><i class="fa fa-bars"></i></a>
<div class="mobile">
<div id="hamburger">
<a href="index.php">Accueil</a>
<a href="historique.php">Derniers titres diffusés</a>
<a href="demande.php">Demande de chanson</a>
<a href="actu.php"><b>Dernières actualités</b></a>
</div>
</div>
</nav>
<main>
<?php include('https://news.lapopulai.re/') ?>
</main>
<footer>
<p>Tous droits réservés &copy; 2021-<?php echo date("Y") ?> La Pop'ulaire</p>
</footer>
<script>
function mob() {
var x = document.getElementById("hamburger");
if (x.style.display === "block") {
x.style.display = "none";
} else {
x.style.display = "block";
}
}
</script>
</script>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 103 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

63
demande.php Normal file
View File

@ -0,0 +1,63 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>La Pop'ulaire - Le meilleur de la scène française et internationale</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Prompt&display=swap">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="apple-touch-icon" sizes="180x180" href="icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="icons/favicon-16x16.png">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<link rel="manifest" href="site.webmanifest">
<link rel="icon" type="image/x-icon" href="icons/favicon.ico">
</head>
<body>
<header>
<img src="LaPopulaire-Landscape.png" width="58%">
</header>
<nav>
<ul class="menu">
<li><a href="index.php">Accueil</a></li>
<li><a href="historique.php">Derniers titres diffusés</a></li>
<li><a href="demande.php"><u>Demande de chanson</u></a></li>
<li><a href="actu.php">Dernières actualités</a></li>
</ul>
<a href="javascript:void(0);" class="icon" onclick="mob()"><i class="fa fa-bars"></i></a>
<div class="mobile">
<div id="hamburger">
<a href="index.php">Accueil</a>
<a href="historique.php">Derniers titres diffusés</a>
<a href="demande.php"><b>Demande de chanson</b></a>
<a href="actu.php">Dernières actualités</a>
</div>
</div>
</nav>
<div id="demande-content">
<br>
<h1>À la demande</h1>
C'est vous le DJ ! Faites votre demande et appréciez d'entendre votre choix sur nos ondes !<br>
Délai moyen : 5 minutes<br><br>
<iframe src="https://hyperion.lapopulai.re/public/lapopulaire/embed-requests?theme=dark" frameborder="0" allowtransparency="true" style="width: 97%; min-height: 2000px; border: 0;"></iframe>
</div>
<footer>
<p>Tous droits réservés &copy; 2021-<?php echo date("Y") ?> La Pop'ulaire</p>
</footer>
<script>
function mob() {
var x = document.getElementById("hamburger");
if (x.style.display === "block") {
x.style.display = "none";
} else {
x.style.display = "block";
}
}
</script>
</script>
</body>
</html>

63
historique.php Normal file
View File

@ -0,0 +1,63 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>La Pop'ulaire - Le meilleur de la scène française et internationale</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Prompt&display=swap">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="apple-touch-icon" sizes="180x180" href="icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="icons/favicon-16x16.png">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<link rel="manifest" href="site.webmanifest">
<link rel="icon" type="image/x-icon" href="icons/favicon.ico">
</head>
<body>
<header>
<img src="LaPopulaire-Landscape.png" width="58%">
<iframe src="https://hyperion.lapopulai.re/public/lapopulaire/embed?theme=dark" frameborder="0" allowtransparency="true" style="width: 97%; min-height: 150px; border: 0;"></iframe>
</header>
<nav>
<ul class="menu">
<li><a href="index.php">Accueil</a></li>
<li><a href="historique.php"><u>Derniers titres diffusés</u></a></li>
<li><a href="demande.php">Demande de chanson</a></li>
<li><a href="actu.php">Dernières actualités</a></li>
</ul>
<a href="javascript:void(0);" class="icon" onclick="mob()"><i class="fa fa-bars"></i></a>
<div class="mobile">
<div id="hamburger">
<a href="index.php">Accueil</a>
<a href="historique.php"><b>Derniers titres diffusés</b></a>
<a href="demande.php">Demande de chanson</a>
<a href="actu.php">Dernières actualités</a>
</div>
</div>
</nav>
<div id="historique-content">
<br>
<h1>Derniers titres diffusés</h1>
Les derniers titres diffusés sur La Pop'ulaire.<br><br>
<iframe src="https://hyperion.lapopulai.re/public/lapopulaire/history?theme=dark" frameborder="0" allowtransparency="true" style="width: 97%; min-height: 870px; border: 0;"></iframe>
</div>
<footer>
<p>Tous droits réservés &copy; 2021-<?php echo date("Y") ?> La Pop'ulaire</p>
</footer>
<script>
function mob() {
var x = document.getElementById("hamburger");
if (x.style.display === "block") {
x.style.display = "none";
} else {
x.style.display = "block";
}
}
</script>
</script>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 93 KiB

BIN
icons/apple-touch-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

BIN
icons/favicon-16x16.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 760 B

BIN
icons/favicon-32x32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

BIN
icons/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

90
index.php Normal file
View File

@ -0,0 +1,90 @@
<!DOCTYPE html>
<html lang="fr" data-lt-installed="true"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>La Pop'ulaire</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Prompt&amp;display=swap">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="apple-touch-icon" sizes="180x180" href="icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="icons/favicon-16x16.png">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<link rel="manifest" href="site.webmanifest">
<link rel="icon" type="image/x-icon" href="icons/favicon.ico">
</head>
<body>
<header>
<nav><img src="LaPopulaire-Landscape.png" width="25%">
<ul class="menu">
<li><a href="#" onclick="return loadMain();"><u>Accueil</u></a></li>
<li><a href="#" onclick="return loadHistorique();">Derniers titres diffusés</a></li>
<li><a href="#" onclick="return loadDemande();">À la demande</a></li>
<!-- <li><a href="actu.php">Dernières actualités</a></li> -->
<!--<li><a href="javascript:void(0);" onclick="ouvrirPopup('player.php');">Player externe</a></li> -->
</ul>
<a href="javascript:void(0);" class="icon" onclick="mob()"><i class="fa fa-bars"></i></a>
<div class="mobile">
<div id="hamburger">
<a href="#" onclick="return loadMain();"><b>Accueil</b></a>
<a href="#" onclick="return loadHistorique();">Derniers titres diffusés</a>
<a href="#" onclick="return loadDemande();">À la demande</a>
<!-- <a href="actu.php">Dernières actualités</a> -->
</div>
</div>
</nav>
<br><iframe src="https://hyperion.lapopulai.re/public/lapopulaire/embed?theme=dark" frameborder="0" allowtransparency="true" style="width: 97%; min-height: 150px; border: 0;"></iframe>
</header>
<main id="main-content">
<br>
<h2>Bienvenue chez La Pop'ulaire !</h2>
Ce site est en cours de reconstruction, mais vos menus restent accessibles.
<br>À très bientôt !<br><br>&nbsp;
</main>
<footer>
<p>Tous droits réservés © 2021-2024 La Pop'ulaire</p>
<a rel="me" href="https://social.am-networks.fr/@lapopulaire"></a>
</footer>
<script>
function mob() {
var x = document.getElementById("hamburger");
if (x.style.display === "block") {
x.style.display = "none";
} else {
x.style.display = "block";
}
}
function ouvrirPopup(url) {
// Spécifiez les dimensions et les paramètres de la fenêtre popup
var largeur = 600;
var hauteur = 175;
var parametres = "width=" + largeur + ",height=" + hauteur + ",resizable=yes,scrollbars=yes";
// Ouvrir la fenêtre popup avec l'URL spécifié et les paramètres
window.open(url, "_blank", parametres);
}
function loadHistorique() {
// Charger le contenu de historique.php dans #main-content
$("#main-content").load("historique.php #historique-content");
return false; // Empêcher le lien de suivre son URL
}
function loadMain() {
// Charger le contenu de historique.php dans #main-content
$("#main-content").load("index.php #main-content");
return false; // Empêcher le lien de suivre son URL
}
function loadDemande() {
// Charger le contenu de historique.php dans #main-content
$("#main-content").load("demande.php #demande-content");
return false; // Empêcher le lien de suivre son URL
}
</script>
</body></html>

BIN
ios/100.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

BIN
ios/1024.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 368 KiB

BIN
ios/114.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

BIN
ios/120.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

BIN
ios/128.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

BIN
ios/144.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

BIN
ios/152.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

BIN
ios/16.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 460 B

BIN
ios/167.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
ios/180.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
ios/192.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

BIN
ios/20.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 608 B

BIN
ios/256.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

BIN
ios/29.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 930 B

BIN
ios/32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
ios/40.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

BIN
ios/50.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

BIN
ios/512.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 103 KiB

BIN
ios/57.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

BIN
ios/58.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

BIN
ios/60.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
ios/64.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

BIN
ios/72.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

BIN
ios/76.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

BIN
ios/80.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

BIN
ios/87.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

1
logo-mastodon.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M480,173.59c0-104.13-68.26-134.65-68.26-134.65C377.3,23.15,318.2,16.5,256.8,16h-1.51c-61.4.5-120.46,7.15-154.88,22.94,0,0-68.27,30.52-68.27,134.65,0,23.85-.46,52.35.29,82.59C34.91,358,51.11,458.37,145.32,483.29c43.43,11.49,80.73,13.89,110.76,12.24,54.47-3,85-19.42,85-19.42l-1.79-39.5s-38.93,12.27-82.64,10.77c-43.31-1.48-89-4.67-96-57.81a108.44,108.44,0,0,1-1-14.9,558.91,558.91,0,0,0,96.39,12.85c32.95,1.51,63.84-1.93,95.22-5.67,60.18-7.18,112.58-44.24,119.16-78.09C480.84,250.42,480,173.59,480,173.59ZM399.46,307.75h-50V185.38c0-25.8-10.86-38.89-32.58-38.89-24,0-36.06,15.53-36.06,46.24v67H231.16v-67c0-30.71-12-46.24-36.06-46.24-21.72,0-32.58,13.09-32.58,38.89V307.75h-50V181.67q0-38.65,19.75-61.39c13.6-15.15,31.4-22.92,53.51-22.92,25.58,0,44.95,9.82,57.75,29.48L256,147.69l12.45-20.85c12.81-19.66,32.17-29.48,57.75-29.48,22.11,0,39.91,7.77,53.51,22.92Q399.5,143,399.46,181.67Z"/></svg>

After

Width:  |  Height:  |  Size: 962 B

37
manifest.json Normal file
View File

@ -0,0 +1,37 @@
{
"background_color": "#230a3b",
"description": "Application de la webradio La Pop'ulaire",
"dir": "ltr",
"display": "standalone",
"name": "La Pop'ulaire",
"orientation": "any",
"scope": "/",
"short_name": "La Pop'ulaire",
"start_url": "https://lapopulai.re",
"theme_color": "#230a3b",
"categories": [],
"icons": [
{
"src": "icons/android-chrome-192x192.png",
"sizes": "192x192"
},
{
"src": "icons/android-chrome-512x512.png",
"sizes": "512x512"
},
{
"src": "icons/apple-touch-icon.png",
"sizes": "180x180"
},
{
"src": "icons/favicon-16x16.png",
"sizes": "16x16"
},
{
"src": "icons/favicon-32x32.png",
"sizes": "32x32"
},
],
"lang": "fr"
}

24
player.php Normal file
View File

@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>La Pop'ulaire - Le meilleur de la scène française et internationale</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Prompt&display=swap">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="apple-touch-icon" sizes="180x180" href="icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="icons/favicon-16x16.png">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<link rel="manifest" href="site.webmanifest">
<link rel="icon" type="image/x-icon" href="icons/favicon.ico">
</head>
<body>
<main>
<br>
<iframe src="https://hyperion.lapopulai.re/public/lapopulaire/embed?theme=dark" frameborder="0" allowtransparency="true" style="width: 97%; min-height: 150px; border: 0;"></iframe>
<!-- <iframe frameborder="0" width="280" height="216" src="https://libretime.docker.am-networks.fr/embed/player?stream=auto&title=Now Playing"></iframe> -->
</main>
</body>
</html>

1
site.webmanifest Normal file
View File

@ -0,0 +1 @@
{"name":"","short_name":"","icons":[{"src":"icons/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"icons/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}

134
style.css Normal file
View File

@ -0,0 +1,134 @@
/* base styles */
html {
font-family: sans-serif;
line-height: 1.15;
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
background-color: #230a3b;
margin: 0;
color: #fff;
font-family: 'Prompt', sans-serif;
text-align: center;
}
/* header */
header {
background-color: #230a3b;
color: #ffffff;
padding: 20px 30px;
}
header h1 {
margin: 0;
font-size: 32px;
line-height: 1.2;
font-weight: bold;
}
/* navigation */
@media (min-width: 769px) {
nav {
display: flex;
justify-content: space-between;
align-items: center;
height: 80px;
/*background-color: #000;*/
color: #fff;
padding: 0 15px;
font-size: 18px;
}
nav img {
width: 25%;
}
nav ul.menu {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
}
nav ul.menu li {
margin-right: 20px;
}
nav ul.menu li:last-child {
margin-right: 0;
}
nav ul.menu li a {
color: #fff;
text-decoration: none;
/* font-weight: bold; */
}
nav a.icon {
display: none;
}
nav .mobile {
display: none;
}
}
@media (max-width: 768px) {
nav {
flex-direction: column;
height: auto;
}
nav img {
width: 85%;
}
nav ul.menu {
display: none;
}
nav a {
color: white;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
display: block;
}
nav .mobile {
overflow: hidden;
/* background-color: #333; */
position: relative;
display: block;
}
nav .mobile #hamburger {
display: none;
}
nav .mobile a {
color: white;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
display: block;
}
nav .mobile a.icon {
background: black;
display: block;
position: absolute;
right: 0;
top: 0;
}
}
footer {
background-color: #000;
color: #fff;
padding: 10px;
text-align: center;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 86 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 148 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 515 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 85 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 146 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 507 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 139 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 492 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 626 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 840 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 492 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 626 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 840 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Some files were not shown because too many files have changed in this diff Show More