Life in Ancient Greek
28 |Uncover the world of ancient Greece through the sculptures, tools, and jewelry found in ruins from over 2000 years ago that have been unearthed through modern science and technology.
29 |
├── .gitignore ├── README.md ├── cryptomasters └── urls.php ├── frontendmuseum ├── .DS_Store ├── background.css ├── data │ ├── data.db │ ├── data.json │ └── data.php ├── gallery │ ├── ancient-greece.png │ ├── ancient-greece.webp │ ├── aristotle.png │ ├── colorful-adaptations.png │ ├── data.json │ ├── fem.jpg │ └── sea-monsters.png ├── images │ ├── app-icon.png │ ├── app-icon.svg │ ├── gradient.png │ ├── logo.png │ └── logo.svg ├── index.html ├── script.js └── styles.css └── slides.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | /.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [](https://frontendmasters.com/courses/php/) 2 | ## PHP Fundamentals Course 3 | This is a companion repository for the [PHP Fundamentals](https://frontendmasters.com/courses/php/) course on Frontend Masters. -------------------------------------------------------------------------------- /cryptomasters/urls.php: -------------------------------------------------------------------------------- 1 | "Life in Ancient Greek", 6 | "description" => "Uncover the world of ancient Greece through the sculptures, tools, and jewelry found in ruins from over 2000 years ago that have been unearthed through modern science and technology.", 7 | "image" => "ancient-greece.png" 8 | ], 9 | [ 10 | "title" => "Aristotle: Life and Legacy", 11 | "description" => "Explore the life and legacy of the great philosopher Aristotle, one of the most influential thinkers of all time. Through rare artifacts and ancient texts, learn about his ideas on ethics, politics, and metaphysics that have shaped the world for centuries.", 12 | "image" => "aristotle.png" 13 | ], 14 | [ 15 | "title" => "Chameleon: Colorful Adaptations", 16 | "description" => "Discover the amazing world of chameleons and their incredible ability to change color. Through interactive displays and live chameleon exhibits, learn about the science behind their color changing and how they use it to communicate and camouflage in their environments.", 17 | "image" => "colorful-adaptations.png" 18 | ], 19 | [ 20 | "title" => "Sea Monsters: Myth and Reality", 21 | "description" => "Dive into the world of sea monsters and explore the myths and legends that have captured our imaginations for centuries. Through fossils, ancient maps, and interactive displays, discover the truth behind the stories and learn about the real-life creatures that inhabit our oceans.", 22 | "image" => "sea-monsters.png" 23 | ] 24 | ]; 25 | 26 | ?> -------------------------------------------------------------------------------- /frontendmuseum/gallery/ancient-greece.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/php-fundamentals/5b7f995f30003d20de09c767f58b1274d13569ed/frontendmuseum/gallery/ancient-greece.png -------------------------------------------------------------------------------- /frontendmuseum/gallery/ancient-greece.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/php-fundamentals/5b7f995f30003d20de09c767f58b1274d13569ed/frontendmuseum/gallery/ancient-greece.webp -------------------------------------------------------------------------------- /frontendmuseum/gallery/aristotle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/php-fundamentals/5b7f995f30003d20de09c767f58b1274d13569ed/frontendmuseum/gallery/aristotle.png -------------------------------------------------------------------------------- /frontendmuseum/gallery/colorful-adaptations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/php-fundamentals/5b7f995f30003d20de09c767f58b1274d13569ed/frontendmuseum/gallery/colorful-adaptations.png -------------------------------------------------------------------------------- /frontendmuseum/gallery/data.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "title": "Life in Ancient Greek", 4 | "description": "Uncover the world of ancient Greece through the sculptures, tools, and jewelry found in ruins from over 2000 years ago that have been unearthed through modern science and technology.", 5 | "image": "ancient-greece.png" 6 | }, 7 | { 8 | "title": "Aristotle: Life and Legacy", 9 | "description": "Explore the life and legacy of the great philosopher Aristotle, one of the most influential thinkers of all time. Through rare artifacts and ancient texts, learn about his ideas on ethics, politics, and metaphysics that have shaped the world for centuries.", 10 | "image": "aristotle.png" 11 | }, 12 | { 13 | "title": "Chameleon: Colorful Adaptations", 14 | "description": "Discover the amazing world of chameleons and their incredible ability to change color. Through interactive displays and live chameleon exhibits, learn about the science behind their color changing and how they use it to communicate and camouflage in their environments.", 15 | "image": "colorful-adaptations.png" 16 | }, 17 | { 18 | "title": "Sea Monsters: Myth and Reality", 19 | "description": "Dive into the world of sea monsters and explore the myths and legends that have captured our imaginations for centuries. Through fossils, ancient maps, and interactive displays, discover the truth behind the stories and learn about the real-life creatures that inhabit our oceans.", 20 | "image": "sea-monsters.png" 21 | } 22 | ] -------------------------------------------------------------------------------- /frontendmuseum/gallery/fem.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/php-fundamentals/5b7f995f30003d20de09c767f58b1274d13569ed/frontendmuseum/gallery/fem.jpg -------------------------------------------------------------------------------- /frontendmuseum/gallery/sea-monsters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/php-fundamentals/5b7f995f30003d20de09c767f58b1274d13569ed/frontendmuseum/gallery/sea-monsters.png -------------------------------------------------------------------------------- /frontendmuseum/images/app-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/php-fundamentals/5b7f995f30003d20de09c767f58b1274d13569ed/frontendmuseum/images/app-icon.png -------------------------------------------------------------------------------- /frontendmuseum/images/app-icon.svg: -------------------------------------------------------------------------------- 1 | 21 | -------------------------------------------------------------------------------- /frontendmuseum/images/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/php-fundamentals/5b7f995f30003d20de09c767f58b1274d13569ed/frontendmuseum/images/gradient.png -------------------------------------------------------------------------------- /frontendmuseum/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/php-fundamentals/5b7f995f30003d20de09c767f58b1274d13569ed/frontendmuseum/images/logo.png -------------------------------------------------------------------------------- /frontendmuseum/images/logo.svg: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /frontendmuseum/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 11 | 12 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |Uncover the world of ancient Greece through the sculptures, tools, and jewelry found in ruins from over 2000 years ago that have been unearthed through modern science and technology.
29 |${exhibition.description}
19 |