Fix imports

This commit is contained in:
Jeremy Thomas
2016-10-16 19:15:56 +01:00
parent c52a3da371
commit a2f0b07369
68 changed files with 417 additions and 7527 deletions

View File

@@ -1,10 +1,10 @@
<nav class="nav">
<div class="nav-left">
<a class="nav-item is-brand" href="{{ site.baseurl }}/">
<a class="nav-item is-brand" href="{{ site.url }}/">
{% if page.route == 'index' %}
<img src="{{ site.baseurl }}/images/bulma-type.png" alt="{{ site.title }}">
<img src="{{ site.url }}/images/bulma-type.png" alt="{{ site.title }}">
{% else %}
<img src="{{ site.baseurl }}/images/bulma-type-white.png" alt="{{ site.title }}">
<img src="{{ site.url }}/images/bulma-type-white.png" alt="{{ site.title }}">
{% endif %}
</a>
</div>
@@ -29,17 +29,17 @@
</span>
<div id="nav-menu" class="nav-right nav-menu">
<a class="nav-item {% if page.route == 'index' %}is-active{% endif %}" href="{{ site.baseurl }}/">
<a class="nav-item {% if page.route == 'index' %}is-active{% endif %}" href="{{ site.url }}/">
Home
</a>
<a class="is-hidden nav-item {% if page.route == 'templates' %}is-active{% endif %} {% if page.layout == 'templates' %}is-active{% endif %}" href="{{ site.baseurl }}/templates/">
<a class="is-hidden nav-item {% if page.route == 'templates' %}is-active{% endif %} {% if page.layout == 'templates' %}is-active{% endif %}" href="{{ site.url }}/templates/">
<span>Templates</span>
<span class="tag is-small is-success">New!</span>
</a>
<a class="nav-item {% if page.route == 'documentation' %}is-active{% endif %} {% if page.layout == 'documentation' %}is-active{% endif %}" href="{{ site.documentation }}">
Documentation
</a>
<a class="nav-item {% if page.route == 'blog' %}is-active{% endif %}" href="{{ site.baseurl }}/blog/">
<a class="nav-item {% if page.route == 'blog' %}is-active{% endif %}" href="{{ site.url }}/blog/">
Blog
</a>