agenda/templates/meteors.html
2025-07-16 12:42:21 +02:00

54 lines
2 KiB
HTML

{% extends "base.html" %}
{% block title %}Meteor Showers 2025 - Edward Betts{% endblock %}
{% block content %}
<div class="container-fluid mt-2">
<h1>Meteor Showers 2025</h1>
<p>Major meteor showers visible throughout 2025. All times are approximate and viewing conditions depend on light pollution, weather, and moon phase.</p>
{% for meteor in meteors %}
<div class="row mb-4">
<div class="col-md-2 text-nowrap text-md-end">
<strong>{{ meteor.peak }}</strong>
<br class="d-none d-md-block"/>
<small class="text-muted">{{ meteor.active }}</small>
</div>
<div class="col-md-2 text-md-nowrap">
<span class="d-md-none">Rate:</span>
{{ meteor.rate }}
<br class="d-none d-md-block"/>
<small class="text-muted">{{ meteor.radiant }}</small>
</div>
<div class="col">
<div>
<h4>{{ meteor.name }}</h4>
<p><strong>Moon Phase:</strong> {{ meteor.moon_phase }}</p>
<p><strong>Best Visibility:</strong> {{ meteor.visibility }}</p>
<p>{{ meteor.description }}</p>
</div>
</div>
</div>
{% endfor %}
<div class="mt-4">
<h3>Viewing Tips</h3>
<ul>
<li>Find a dark location away from city lights</li>
<li>Allow your eyes to adjust to darkness for 20-30 minutes</li>
<li>Look northeast for most showers, but meteors can appear anywhere</li>
<li>Best viewing is typically after midnight</li>
<li>No telescope needed - use naked eye viewing</li>
<li>Check weather conditions and moon phase before planning</li>
</ul>
</div>
<div class="mt-4">
<h3>About Meteor Showers</h3>
<p>Meteor showers occur when Earth passes through debris trails left by comets or asteroids. The debris burns up in our atmosphere, creating the streaks of light we see as "shooting stars."</p>
<p><strong>Data Sources:</strong> Information compiled from NASA, American Meteor Society, and astronomical observations for 2025.</p>
</div>
</div>
{% endblock %}