Skip to content
Grav 2.0 is officially stable. Read the announcement →
Archive

How to add links to nav bar(floating Bar)?

Started by Muut Archive 11 years ago · 2 replies · 469 views
11 years ago

How to add external links to the navigation bar like in grav site?
Thanks in advance!
Screenshot

11 years ago

Just FYI, on the getgrav.org site those are just harcoded at the bottom of the partials/navigation.html.twig:

HTML
<ul class="navigation">
    {% for page in pages.children %}
        {% if page.visible %}
            {% set current_page = (page.active or page.activeChild) ? 'active' : '' %}
            <li class="{{ current_page }}"><a href="{{ page.url }}">{{ page.menu }}</a></li>
        {% endif %}
    {% endfor %}
    <li><a href="http://learn.getgrav.org">Learn</a></li>
    <li><a href="http://twitter.com/getgrav"><i class="fa fa-twitter"></i></a></li>
    <li><a href="https://github.com/getgrav/grav"><i class="fa fa-github"></i></a></li>
    <li><a href="https://gitter.im/getgrav/grav"><i class="fa fa-comments-o"></i></a></li>
</ul>

Suggested topics

Topic Participants Replies Views Activity
Archive · by Deleted User, 9 years ago
0 1330 9 years ago
Archive · by Muut Archive, 9 years ago
2 922 9 years ago
Archive · by Muut Archive, 9 years ago
2 4052 9 years ago
Archive · by Muut Archive, 9 years ago
1 2930 9 years ago
Archive · by Muut Archive, 9 years ago
3 1109 9 years ago