1
0
mirror of synced 2025-02-04 06:09:23 +03:00

trying to fix base path issue

This commit is contained in:
Igor Vaynberg 2012-05-28 14:56:21 -07:00
parent 8e696c48a0
commit 1b6ddaf222
2 changed files with 4 additions and 2 deletions

View File

@ -0,0 +1,2 @@
exclude : ["README.md"]
BASE_PATH : http://ivaynberg.github.com/select2/

View File

@ -24,9 +24,9 @@ Usage:
{% if node.title != null %} {% if node.title != null %}
{% if group == null or group == node.group %} {% if group == null or group == node.group %}
{% if page.url == node.url %} {% if page.url == node.url %}
<li class="active"><a href="{{ BASE_PATH }}{{node.url}}" class="active">{{node.title}}</a></li> <li class="active"><a href="{{BASE_PATH}}{{node.url}}" class="active">{{node.title}}</a></li>
{% else %} {% else %}
<li><a href="{{ BASE_PATH }}{{node.url}}">{{node.title}}</a></li> <li><a href="{{BASE_PATH}}{{node.url}}">{{node.title}}</a></li>
{% endif %} {% endif %}
{% endif %} {% endif %}
{% endif %} {% endif %}