diff --git a/templates/_layout/header-old.twig b/templates/_layout/header-old.twig index 66e97da3..081cc7cf 100644 --- a/templates/_layout/header-old.twig +++ b/templates/_layout/header-old.twig @@ -1,6 +1,47 @@ {% from '_layout/input.twig' import input_checkbox_raw %} {% set in_manage = manage_menu is defined %} +{% set site_menu = [ + { + 'title': 'Home', + 'url': '/', + 'menu': [ + { + 'title': 'Members', + 'url': '/members.php', + }, + { + 'title': 'Changelog', + 'url': '/changelog.php', + }, + { + 'title': 'Contact', + 'url': '/info.php/contact', + }, + { + 'title': 'Rules', + 'url': '/info.php/rules', + }, + { + 'title': 'Twitter', + 'url': 'https://twitter.com/flashiinet', + }, + ], + }, + { + 'title': 'News', + 'url': '/news.php', + }, + { + 'title': 'Forum', + 'url': '/forum', + }, + { + 'title': 'Chat', + 'url': 'https://chat.flashii.net', + }, +] %} +