Skip to content

Commit f322d19

Browse files
committed
Adding a hard-hitting homepage
1 parent 7ee7b9a commit f322d19

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
3+
namespace AppBundle\Controller;
4+
5+
use Symfony\Component\HttpFoundation\Response;
6+
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
7+
8+
class DefaultController
9+
{
10+
/**
11+
* @Route("/")
12+
*/
13+
public function homepageAction()
14+
{
15+
return new Response('<img src="https://pbs.twimg.com/media/B6dVMHzCYAASEhm.jpg" />');
16+
}
17+
}

0 commit comments

Comments
 (0)