7 lines
238 B
HTML
7 lines
238 B
HTML
{% extends "_layout.html" %}
|
|
{% block content %}
|
|
<h1>Welcome to the Home Page</h1>
|
|
<p>This is a starter website built with Axum and Tera.</p>
|
|
<p>The time on the server is: <strong>{{ server_time }}</strong></p>
|
|
{% endblock %}
|