changing app title

extending gitignore
This commit is contained in:
georg.sinn-schirwitz
2025-08-30 13:24:33 +02:00
parent 8ad52563fa
commit c4ca2a8288
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@@ -164,3 +164,4 @@ cython_debug/
# option (not recommended) you can uncomment the following to ignore the entire idea folder. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/ #.idea/
docs/online.md

View File

@@ -100,7 +100,7 @@ def build_keyword_palette() -> Dict[str, Dict[str, str]]:
@app.route('/', methods=['GET']) @app.route('/', methods=['GET'])
def index(): def index():
title = "Bobby Job Listings" title = "Job Listings"
all_jobs = get_all_jobs() all_jobs = get_all_jobs()
# Apply user preference filters if no explicit filters provided # Apply user preference filters if no explicit filters provided
selected_region = request.args.get("region") selected_region = request.args.get("region")