dash-website/_includes/nav-mobile.html
Perry Woodin ad056aa1cb Fix/html (#13)
* Remove style-guide from i18n builds

* Remove uncategorized from CN blog posts.

* Team images and alt attributes.

* Fixing language linkage

* Ignore missing or empty alt tags

* ignore sass-cache

* fix gitignore for sass-cache

* fix gitignore for sass-cache

* Only show language dropdown if the page is not a post (blog)

* New url with site.lang included.

* Removed the site.baseurl var from the posts.
2016-09-12 15:25:54 -04:00

18 lines
No EOL
834 B
HTML

{% include base.html %}
<nav class="overlay-menu">
<ul>
<li><a href="{{ basenav }}/">{% t nav.what-is-dash %}</a></li>
<li><a href="{{ basenav }}/get-dash/">{% t nav.get-dash %}</a></li>
<li><a href="{{ basenav }}/participate/">{% t nav.participate %}</a></li>
<li><a href="{{ basenav }}/currency/">{% t nav.currency %}</a></li>
<li><a href="{{ basenav }}/community/">{% t nav.community %}</a></li>
<li><a href="{{ basenav }}/blog/">{% t nav.blog %}</a></li>
<li><a href="{{ basenav }}">{% t nav.project %}</a></li>
{% if page.layout != 'post' %}
<li><a href="{{ basenav }}{{ page.url }}">{% t global.english %}</a></li>
<li><a href="{{ basenav }}{{ page.url }}">{% t global.spanish %}</a></li>
{% endif %}
</ul>
</nav>