mirror of
https://codeberg.org/danielsiepmann/news-reader-php.git
synced 2024-11-22 04:06:09 +01:00
Daniel Siepmann
8efad3e1fd
Basic import of entries from feeds. Also make imported feeds accessible in frontend.
18 lines
435 B
YAML
18 lines
435 B
YAML
# Static pages / templates
|
|
start:
|
|
path: /
|
|
controller: Symfony\Bundle\FrameworkBundle\Controller\TemplateController
|
|
defaults:
|
|
template: 'static/start.html.twig'
|
|
|
|
bucket:
|
|
path: /bucket/{slug}
|
|
controller: App\Controller\BucketController::show
|
|
|
|
feed:
|
|
path: /feed/{slug}
|
|
controller: App\Controller\FeedController::show
|
|
|
|
entry:
|
|
path: /entry/{slug}
|
|
controller: App\Controller\EntryController::show
|