11 lines
358 B
HTML
11 lines
358 B
HTML
{% extends 'medwings/base.html' %}
|
|
{% load static %}
|
|
{% block title %}
|
|
Medwings | Home
|
|
{% endblock title %}
|
|
|
|
{% block content %}
|
|
<h1>Welcome to Medwings</h1>
|
|
<p1>There ain't much 'ere yet...</p1>
|
|
{% comment %}<img src="{% static 'medwings/images/devices/withings-thermo.webp' %}" alt="A withings thermometer.">{% endcomment %}
|
|
{% endblock content %}
|