15 lines
495 B
HTML
15 lines
495 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Weather{% endblock %}
|
|
{% block content %}
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
|
|
<div class="container">
|
|
<h2 class="header">Current Weather</h2>
|
|
<div class="weather-container">
|
|
<p>Location: {{ weather.location.name }}</p>
|
|
<p>Temperature: {{ weather.current.temp_c }}°C</p>
|
|
<p>Condition: {{ weather.current.condition.text }}</p>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|