diff --git a/src/_data/navigation.json b/src/_data/navigation.json index 9111166..8c3da93 100644 --- a/src/_data/navigation.json +++ b/src/_data/navigation.json @@ -1,24 +1,37 @@ { - "items": [ - { - "text": "About", - "url": "/about/" - }, - { - "text": "Portfolio", - "url": "/portfolio/" - }, - { - "text": "Personal", - "url": "/personal/" - }, - { - "text": "Blog", - "url": "/blog/" - }, - { - "text": "Documentation", - "url": "/documentation/" - } - ] -} + "items": [ + { + "text": "About", + "url": "/about/", + "sections": [ + "Bio", + "Contact Me" + ] + }, + { + "text": "Portfolio", + "url": "/portfolio/", + "sections": [ + "Resume", + "Professional Experience", + "Education", + "Research" + ] + }, + { + "text": "Personal", + "url": "/personal/", + "sections": [] + }, + { + "text": "Blog", + "url": "/blog/", + "sections": [] + }, + { + "text": "Documentation", + "url": "/documentation/", + "sections": [] + } + ] +} \ No newline at end of file diff --git a/src/_includes/layouts/portfolio.html b/src/_includes/layouts/portfolio.html index 23fa51c..eb5e087 100644 --- a/src/_includes/layouts/portfolio.html +++ b/src/_includes/layouts/portfolio.html @@ -2,9 +2,9 @@ {% extends "layouts/base.html" %} {% block content %}
-{% include "partials/resume.html" %} -{% include "partials/professionalExperience.html" %} -{% include "partials/education.html" %} -{% include "partials/research.html" %} + {% include "partials/resume.html" %} + {% include "partials/professionalExperience.html" %} + {% include "partials/education.html" %} + {% include "partials/research.html" %}
{% endblock %} \ No newline at end of file diff --git a/src/_includes/partials/navigation.html b/src/_includes/partials/navigation.html index 6513865..dbf427c 100644 --- a/src/_includes/partials/navigation.html +++ b/src/_includes/partials/navigation.html @@ -18,9 +18,20 @@ diff --git a/src/style.css b/src/style.css index 84ba3c1..cc18f20 100644 --- a/src/style.css +++ b/src/style.css @@ -61,6 +61,10 @@ hr { color: var(--primary-color); } +.my-nav .nav-link.show { + color: var(--tertiary-color); +} + .my-nav .nav-link:hover { color: var(--tertiary-color); }