Installed and used composer require symfony/http-client and printing Iss location data on homepage.

This commit is contained in:
Krzysztof Płaczek
2024-10-19 18:01:18 +02:00
parent 6172d76b79
commit d44091fe6e
4 changed files with 18 additions and 3 deletions

View File

@@ -52,6 +52,14 @@
Looking for your next galactic ride?
<a href="#" class="underline font-semibold">Browse the {{ ships|length * 10 }} starships for sale!</a>
</p>
<div>
<h2 class="text-4xl font-semibold my-8">ISS Location</h2>
<p>Time: {{ issData.timestamp|date }}</p>
<p>Altitude: {{ issData.altitude }}</p>
<p>Latitude: {{ issData.latitude }}</p>
<p>Longitude: {{ issData.longitude }}</p>
<p>Visibility: {{ issData.visibility }}</p>
</div>
</div>
</main>
{% endblock %}