Skip to content

Commit

Permalink
refactor(main): use the traditional name for the root web page
Browse files Browse the repository at this point in the history
  • Loading branch information
xenophonf committed Dec 15, 2023
1 parent 387417d commit 8a47416
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@


@bp.route("/")
def home():
return render_template("home.html")
def index():
return render_template("index.html")
1 change: 1 addition & 0 deletions src/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
}
</style>
</head>

<body class="d-flex flex-column min-vh-100">
<nav class="navbar navbar-expand-lg navbar-light bg-light mb-4">
<div class="container">
Expand Down
File renamed without changes.

0 comments on commit 8a47416

Please sign in to comment.