diff --git a/public/.gitignore b/public/.gitignore new file mode 100644 index 0000000..667c063 --- /dev/null +++ b/public/.gitignore @@ -0,0 +1,3 @@ +vendor/ +config.php +composer.lock diff --git a/public/about/index.php b/public/about/index.php new file mode 100644 index 0000000..a30db41 --- /dev/null +++ b/public/about/index.php @@ -0,0 +1,24 @@ + + + + + + + + À propos | Les Cocottes Minutes + + + + + + +
+

À propos

+

Les Cocottes Minutes est une association étudiante de l'Université d'Évry val d'Essonne.

+
+ + + + \ No newline at end of file diff --git a/public/about/trombi/index.php b/public/about/trombi/index.php new file mode 100644 index 0000000..939e33e --- /dev/null +++ b/public/about/trombi/index.php @@ -0,0 +1,27 @@ + + + + + + + + Trombinoscope | Les Cocottes Minutes + + + + + + +
+

Trombinoscope

+
+

Bureau

+ +
+
+ + + + \ No newline at end of file diff --git a/public/composer.json b/public/composer.json new file mode 100644 index 0000000..79d77c4 --- /dev/null +++ b/public/composer.json @@ -0,0 +1,5 @@ +{ + "require": { + "phpmailer/phpmailer": "^6.4" + } +} diff --git a/public/config.php.dist b/public/config.php.dist new file mode 100644 index 0000000..e69de29 diff --git a/public/contact/index.php b/public/contact/index.php new file mode 100644 index 0000000..cf0f274 --- /dev/null +++ b/public/contact/index.php @@ -0,0 +1,23 @@ + + + + + + + + Contact | Les Cocottes Minutes + + + + + + +
+ +
+ + + + \ No newline at end of file diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..e4c78f9 Binary files /dev/null and b/public/favicon.ico differ diff --git a/public/footer.php b/public/footer.php new file mode 100644 index 0000000..449dae3 --- /dev/null +++ b/public/footer.php @@ -0,0 +1,6 @@ + \ No newline at end of file diff --git a/public/header.php b/public/header.php new file mode 100644 index 0000000..185f6ce --- /dev/null +++ b/public/header.php @@ -0,0 +1,4 @@ +
+

Les Cocottes Minutes

+ Pour des initiatives écologiques +
\ No newline at end of file diff --git a/public/index.php b/public/index.php new file mode 100644 index 0000000..a36730c --- /dev/null +++ b/public/index.php @@ -0,0 +1,51 @@ + + + + + + + + Les Cocottes Minutes + + + + + + +
+ + +
+
+
+
+
+

+ Association étudiante de l'Université d'Évry val d'Esonne, + Les Cocottes Minutes a pour objectif d'initier + et promouvoir des actions dans le domaine de l'écologie + au coeur de l'université, et plus généralement dans la ville d'Évry - Courcouronnes. +

+
+
+
+
+
+
+
+
+
+ +
+ + + + + + \ No newline at end of file diff --git a/public/media/networks/gitea.svg b/public/media/networks/gitea.svg new file mode 100644 index 0000000..121a0a3 --- /dev/null +++ b/public/media/networks/gitea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/networks/mob_black.png b/public/media/networks/mob_black.png new file mode 100644 index 0000000..7e6b6ca Binary files /dev/null and b/public/media/networks/mob_black.png differ diff --git a/public/media/networks/mobilizon.jpg b/public/media/networks/mobilizon.jpg new file mode 100644 index 0000000..4ab4efe Binary files /dev/null and b/public/media/networks/mobilizon.jpg differ diff --git a/public/media/networks/mobilizon.png b/public/media/networks/mobilizon.png new file mode 100644 index 0000000..b92382b Binary files /dev/null and b/public/media/networks/mobilizon.png differ diff --git a/public/media/pictures/earth-resized.jpg b/public/media/pictures/earth-resized.jpg new file mode 100644 index 0000000..3f48b18 Binary files /dev/null and b/public/media/pictures/earth-resized.jpg differ diff --git a/public/media/pictures/earth.jpg b/public/media/pictures/earth.jpg new file mode 100644 index 0000000..04ee172 Binary files /dev/null and b/public/media/pictures/earth.jpg differ diff --git a/public/menu.php b/public/menu.php new file mode 100644 index 0000000..15770c8 --- /dev/null +++ b/public/menu.php @@ -0,0 +1,15 @@ + \ No newline at end of file diff --git a/public/networks.php b/public/networks.php new file mode 100644 index 0000000..80b1ca8 --- /dev/null +++ b/public/networks.php @@ -0,0 +1,14 @@ +
+ + + + + + + + mobilizon + + gitea + +
+ \ No newline at end of file diff --git a/public/scripts/map.js b/public/scripts/map.js new file mode 100644 index 0000000..038ef43 --- /dev/null +++ b/public/scripts/map.js @@ -0,0 +1,9 @@ +var map = L.map('map').setView([48.624058618779, 2.4272403919108], 13); + +L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', { + attribution: '© OpenStreetMap contributors' +}).addTo(map); + +L.marker([48.624058618779, 2.4272403919108]).addTo(map) + .bindPopup('Université d\'Évry val d\'Essonne

23 Boulevard François Mitterrand,
91000 Évry-Courcouronnes') + .openPopup(); \ No newline at end of file diff --git a/public/scripts/script.js b/public/scripts/script.js new file mode 100644 index 0000000..e69de29 diff --git a/public/styles/style.css b/public/styles/style.css new file mode 100644 index 0000000..26a5eff --- /dev/null +++ b/public/styles/style.css @@ -0,0 +1,73 @@ +body { + margin: 0; + padding: 0; +} + +section { + min-height: 100vh; +} + +footer { + padding: 1em; + text-align: center; + background-color: white; +} + +nav ul { + display: flex; + flex-direction: row; +} + +nav ul li { + list-style: none; + padding-left: 2em; +} + +nav ul a { + color: black; +} + +header, +section { + padding: 1em; +} + +body { + background-color: black; + background-image: url("/media/pictures/earth-resized.jpg"); + background-repeat: no-repeat; + background-attachment: fixed; + background-position: 50%; +} + +div.container.flip { + height: 30em; +} + +div.container { + background-color: white; + padding: 2em; +} + +div.container.flip:nth-child(even) { + background-color: white; +} + +div.container.flip:nth-child(odd) { + background-color: transparent; + height: 40em; +} + +a img { + max-height: 1em; + border-radius: 10%; +} + +footer a { + text-decoration: none; + color: black +} + +#map { + height: 40em; +} \ No newline at end of file