From 168ac5582057769b0da4c7085cde83d7593c9f67 Mon Sep 17 00:00:00 2001 From: guochao Date: Wed, 6 Mar 2024 11:27:36 +0800 Subject: [PATCH] rename template to resolve filepath issue --- templates/index.html | 2 +- templates/{_layout.html => layout.html} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename templates/{_layout.html => layout.html} (100%) diff --git a/templates/index.html b/templates/index.html index f81c4e5..dac8bf0 100644 --- a/templates/index.html +++ b/templates/index.html @@ -1,4 +1,4 @@ -{% extends "_layout.html" %} +{% extends "layout.html" %} {% block title %}A simple and silly address prober{% endblock %} {% block content %}
{{ address }}
diff --git a/templates/_layout.html b/templates/layout.html similarity index 100% rename from templates/_layout.html rename to templates/layout.html