Some checks are pending
NordaBiz Tests / Unit & Integration Tests (push) Waiting to run
NordaBiz Tests / E2E Tests (Playwright) (push) Blocked by required conditions
NordaBiz Tests / Smoke Tests (Production) (push) Blocked by required conditions
NordaBiz Tests / Send Failure Notification (push) Blocked by required conditions
Three public feeds: /feed/events.xml (upcoming events), /feed/news.xml (announcements), /feed/pej.xml (nuclear news). RSS 2.0 format with KIG custom fields (thumbnail, datawydarzenia). RSS discovery links added to base.html head. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
18 lines
458 B
Python
18 lines
458 B
Python
"""
|
|
Public Blueprint
|
|
================
|
|
|
|
Public-facing routes: index, company profiles, search, events.
|
|
"""
|
|
|
|
from flask import Blueprint
|
|
|
|
bp = Blueprint('public', __name__)
|
|
|
|
from . import routes # noqa: E402, F401
|
|
from . import routes_zopk # noqa: E402, F401
|
|
from . import routes_pej # noqa: E402, F401
|
|
from . import routes_announcements # noqa: E402, F401
|
|
from . import routes_company_edit # noqa: E402, F401
|
|
from . import routes_rss # noqa: E402, F401
|