diff --git a/source/_includes/nav.html.twig b/source/_includes/nav.html.twig index 77e9fda1..e5715a16 100644 --- a/source/_includes/nav.html.twig +++ b/source/_includes/nav.html.twig @@ -16,48 +16,17 @@ {% set links = [ - { - title: 'About', - href: '/', - pattern: '^/.$' - }, - { - title: 'Experience', - href: '/experience', - pattern: '^/experience/?$' - }, - { - title: 'Talks', - href: '/talks', - pattern: '^/talks/?' - }, - { - title: 'Open Source', - href: '/opensource', - pattern: '^/opensource/?$' - }, - { - title: 'Blog', - href: '/blog', - pattern: '^/blog/?' - }, - { - title: 'Contact', - href: '/contact', - pattern: '^/contact/?' - } + { title: 'About', href: '/', pattern: '^/.$' }, + { title: 'Experience', href: '/experience', pattern: '^/experience/?$' }, + { title: 'Talks', href: '/talks', pattern: '^/talks/?' }, + { title: 'Open Source', href: '/opensource', pattern: '^/opensource/?$' }, + { title: 'Blog', href: '/blog', pattern: '^/blog/?' }, + { title: 'Contact', href: '/contact', pattern: '^/contact/?' } ] %}