Skip to content

Commit 617d3fa

Browse files
committed
add repo links
1 parent 9c0c050 commit 617d3fa

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

templates/index.jinja.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
{% block content %}
44

5-
<h1>Text search example</h1>
5+
<a href="https://github.com/tofran/fastapi-htmx-full-text-search-demo/">Source code</a>
6+
<h1>Python FastAPI HTMX full-text-search demo</h1>
67

78
<form
89
hx-get="/html-api/items"

text_search_app/app.py

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ async def lifespan(app: FastAPI):
2424

2525
app = FastAPI(
2626
title="Python FastAPI HTMX full-text-search demo",
27+
description="[Source code](https://github.com/tofran/fastapi-htmx-full-text-search-demo/)",
2728
debug=DEVELOPMENT_MODE,
2829
openapi_url="/openapi.json" if DEVELOPMENT_MODE else None,
2930
lifespan=lifespan,

0 commit comments

Comments
 (0)