* google fonts added

* color changes
* grid middle row in tablet resolution is now variable
This commit is contained in:
Dávid Danyi
2018-05-02 19:03:32 +02:00
parent ff2721f67c
commit e11803f273
4 changed files with 77 additions and 19 deletions

View File

@@ -58,7 +58,7 @@ class NavigationExtension implements ExtensionInterface
$factory = new MenuFactory();
$this->menu = $factory->createItem("Main-menu");
$prizeMenu = $this->menu->addChild("The prize", [
$prizeMenu = $this->menu->addChild(strtoupper("The Prize"), [
'uri' => $this->getUriFromRouter('the-prize')
]);
$prizeMenu->addChild("Background and Purpose", [
@@ -74,11 +74,11 @@ class NavigationExtension implements ExtensionInterface
'uri' => $this->getUriFromRouter('the-prize.events')
]);
$this->menu->addChild("Judges", [
$this->menu->addChild(strtoupper("Judges"), [
'uri' => $this->getUriFromRouter('judges')
]);
$awardeesMenu = $this->menu->addChild("Awardees", [
$awardeesMenu = $this->menu->addChild(strtoupper("Awardees"), [
'uri' => $this->getUriFromRouter('awardees')
]);
$this->populateAwardeesSubmenu($awardeesMenu);