X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FCoreBundle%2FController%2FStaticController.php;h=5b7bd56edc87079bafe43c39e5d27699571d518c;hb=671a2b887f3215366e8acc05fcfa4e57264d3e69;hp=64875a6654c3723de9facd382a7f4552b8eee90d;hpb=6eebd8c90941ddfe8eeca1961f7a7a493e227687;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/CoreBundle/Controller/StaticController.php b/src/Wallabag/CoreBundle/Controller/StaticController.php index 64875a66..5b7bd56e 100644 --- a/src/Wallabag/CoreBundle/Controller/StaticController.php +++ b/src/Wallabag/CoreBundle/Controller/StaticController.php @@ -25,6 +25,20 @@ class StaticController extends Controller { return $this->render( 'WallabagCoreBundle:Static:about.html.twig', + array( + 'version' => $this->getParameter('wallabag_core.version'), + 'paypal_url' => $this->getParameter('wallabag_core.paypal_url'), + ) + ); + } + + /** + * @Route("/quickstart", name="quickstart") + */ + public function quickstartAction() + { + return $this->render( + 'WallabagCoreBundle:Static:quickstart.html.twig', array() ); }