parent
bcb3329fdd
commit
37e74404d5
3 changed files with 138 additions and 0 deletions
54
templates/meteors.html
Normal file
54
templates/meteors.html
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
{% 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 %}
|
||||
|
|
@ -12,6 +12,7 @@
|
|||
{"endpoint": "gaps_page", "label": "Gaps" },
|
||||
{"endpoint": "weekends", "label": "Weekends" },
|
||||
{"endpoint": "launch_list", "label": "Space launches" },
|
||||
{"endpoint": "meteor_list", "label": "Meteor showers" },
|
||||
{"endpoint": "holiday_list", "label": "Holidays" },
|
||||
{"endpoint": "schengen_report", "label": "Schengen" },
|
||||
] + ([{"endpoint": "birthday_list", "label": "Birthdays" }]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue