<!– Navigation –> <nav class=“navbar navbar-default navbar-custom navbar-fixed-top” style=“margin-right:1em; z-index: 1;”>

<div class="container-fluid">
    <!-- Brand and toggle get grouped for better mobile display -->
    <div class="navbar-header page-scroll">
        <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
            <i class="fa fa-bars fa-lg"></i>
        </button>
        <a href="{{ site.baseurl }}/" title="HOME"><img src="{{ site.baseurl }}/assets/img/logo.png" alt="logo" style="width:150px;cursor:pointer;margin-top:15px;"/></a>
    </div>

    <!-- Collect the nav links, forms, and other content for toggling -->
    <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
        <ul class="nav navbar-nav navbar-right fancytextborder">
           {% for nav_hash in site.nav %}
            {% for nav_item in nav_hash %}
                {% assign lowercase_nav_item = nav_item[0] | downcase %}
                {% if page.active == lowercase_nav_item %}
                <li class="active"><a href="{{ nav_item[1] }}">{{ nav_item[0] }}</a></li>
                {% else %}
                <li><a href="{{ nav_item[1] }}">{{ nav_item[0] }}</a></li>
                {% endif %}
            {% endfor %}
            {% endfor %}

<!— view cart button –>

<li>
    <form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
        <!-- Identify your business so that you can collect the payments. -->
        <input type="hidden" name="business" value="{{ site.paypal }}">

        <!-- Specify a PayPal shopping cart View Cart button. -->
        <input type="hidden" name="cmd" value="_cart">
        <input type="hidden" name="display" value="1">

        <!-- Display the View Cart button. -->
        <input class="view-cart" type="image" name="submit" onclick="dataLayer.push({'event': 'view-cart'});form.submit(); return false"
            src="/assets/img/cart-empty.png" alt="Add to Cart">
        <img alt="" width="1" height="1"
            src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" >
    </form>
</li>

<!– /view cart button –>

    <li>
        {% include donate.html %}
    </li>

        </ul>
    </div>

    <!-- /.navbar-collapse -->

</div>
<!-- /.container -->

</nav>

<div class=“donate-outside”> {% include donate.html %} </div>