aboutsummaryrefslogtreecommitdiff
path: root/_posts/2020-09-29-simple-jekyll-navigation.md
blob: d948f9940cc76fbb23e5d9f3edbcbec5207cdd84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
---
layout: post
title: "Simple Navigation Setup in Jekyll 3.9.0"
date: 2020-09-29
---


I have found that there is a lot of information on the internet in regards to setting up "dynamic" navigation in Jekyll. The problem I've noticed is that a good amount of these implementations are overly complex. Here is the simplest way that I tend to use when building out `nav` elements in Jekyll (3.9.0 as of this writing).

## Creating the Directories & Files

In your Jekyll project, at the top level, you need to create a directory called `_data`. Inside this folder we will be creating a new file called `navigation.yml`. The contents of this file will contain all your navigation links and they are rendered like so:


    - title: Home
    url: /
    
    - title: Articles
    url: /articles/
    
    - title: About
    url: /about/


## Dynamically Rendering the Navigation

The next and final step is rendering out the navigation with a simple loop:


    {% for item in site.data.navigation %}
        <li>
            <a href="{{ item.url }}"><span>{{ item.title }}</span></a>
        </li>
    {% endfor %}


## Highlight Current Page

It's also very easy to extend this method to add a CSS class based on whether a user is on the currently selected page or not:


    {% for item in site.data.navigation %}
        <li>
            {% if item.url == page.url %}
            <a class="active" href="{{ item.url }}"><span>{{ item.title }}</span></a>
            {% else %}
            <a href="{{ item.url }}"><span>{{ item.title }}</span></a>
            {% endif %}
        </li>
    {% endfor %}



    /* Custom styling for active class */
    li a.active { color: red; }


Congrats! You now have fully functional, dynamic navigation on your Jekyll site.