1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-07-27 17:28:39 +00:00

Removed duplicated templates files

This commit is contained in:
Nicolas Lœuillet 2016-09-30 09:38:08 +02:00
parent fb479be3a0
commit 2ff9991a1d
No known key found for this signature in database
GPG key ID: 5656BE27E1E34D0A
26 changed files with 18 additions and 494 deletions

View file

@ -15,7 +15,7 @@ class StaticController extends Controller
$addonsUrl = $this->container->getParameter('addons_url');
return $this->render(
'WallabagCoreBundle:Static:howto.html.twig',
'@WallabagCore/themes/common/Static/howto.html.twig',
['addonsUrl' => $addonsUrl]
);
}
@ -26,7 +26,7 @@ class StaticController extends Controller
public function aboutAction()
{
return $this->render(
'WallabagCoreBundle:Static:about.html.twig',
'@WallabagCore/themes/common/Static/about.html.twig',
[
'version' => $this->getParameter('wallabag_core.version'),
'paypal_url' => $this->getParameter('wallabag_core.paypal_url'),
@ -40,7 +40,7 @@ class StaticController extends Controller
public function quickstartAction()
{
return $this->render(
'WallabagCoreBundle:Static:quickstart.html.twig',
'@WallabagCore/themes/common/Static/quickstart.html.twig',
[]
);
}