mirror of
https://github.com/seigler/dash-website
synced 2025-07-27 07:16:10 +00:00
* 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.
18 lines
No EOL
834 B
HTML
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> |