1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-08-16 18:01:38 +00:00

Move templates

This commit is contained in:
Yassine Guedidi 2024-02-19 00:03:14 +01:00
parent 3c1a183e2d
commit 664b4baa3e
90 changed files with 119 additions and 118 deletions

View file

@ -14,7 +14,7 @@ class StaticController extends AbstractController
$addonsUrl = $this->getParameter('addons_url');
return $this->render(
'@WallabagCore/Static/howto.html.twig',
'Static/howto.html.twig',
[
'addonsUrl' => $addonsUrl,
]
@ -27,7 +27,7 @@ class StaticController extends AbstractController
public function aboutAction()
{
return $this->render(
'@WallabagCore/Static/about.html.twig',
'Static/about.html.twig',
[
'version' => $this->getParameter('wallabag_core.version'),
'paypal_url' => $this->getParameter('wallabag_core.paypal_url'),
@ -41,7 +41,7 @@ class StaticController extends AbstractController
public function quickstartAction()
{
return $this->render(
'@WallabagCore/Static/quickstart.html.twig'
'Static/quickstart.html.twig'
);
}
}