Release 0.5
This release changes the top Navigation into a white tipbar, extends the documentation and uses some subtile changes.
This commit is contained in:
parent
c4ca4e61b2
commit
dba5d71522
25 changed files with 381 additions and 255 deletions
|
@ -1,9 +1,9 @@
|
|||
{% include header.html %}
|
||||
<body id="top-of-page">
|
||||
{% include masthead.html %}
|
||||
|
||||
{% include navigation.html %}
|
||||
|
||||
{% include masthead.html %}
|
||||
|
||||
{{ content }}
|
||||
|
||||
{% include footer.html %}
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
---
|
||||
layout: default
|
||||
---
|
||||
{% if page.image_title %}
|
||||
{% if page.image.title %}
|
||||
<div class="row top-30">
|
||||
<div class="small-12 columns">
|
||||
<img src="{{ site.url }}/assets/img/{{ page.image_title }}" width="970" alt="{{ page.title escape_once }}">
|
||||
<img src="{{ site.url }}/assets/img/{{ page.image.title }}" width="970" alt="{{ page.title escape_once }}">
|
||||
</div><!-- /.small-12.columns -->
|
||||
</div><!-- /.row -->
|
||||
{% endif %}
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
---
|
||||
layout: default
|
||||
---
|
||||
{% if page.image_title %}
|
||||
{% if page.image.title %}
|
||||
<div class="row top-30">
|
||||
<div class="small-12 columns">
|
||||
<img src="{{ site.url }}/assets/img/{{ page.image_title }}" width="970" alt="{{ page.title escape_once }}">
|
||||
<img src="{{ site.url }}/assets/img/{{ page.image.title }}" width="970" alt="{{ page.title escape_once }}">
|
||||
</div><!-- /.small-12.columns -->
|
||||
</div><!-- /.row -->
|
||||
{% endif %}
|
||||
|
|
|
@ -11,7 +11,7 @@ layout: default
|
|||
<article>
|
||||
<header>
|
||||
{% if page.subtitle %}<p class="subtitle">{{ page.subtitle }}</p>{% endif %}
|
||||
{% if page.image_title %}<img src="{{ site.url }}/assets/img/{{ page.image_title }}" width="970" alt="{{ page.title escape_once }}">{% endif %}
|
||||
{% if page.image.title %}<img src="{{ site.url }}/assets/img/{{ page.image.title }}" width="970" alt="{{ page.title escape_once }}">{% endif %}
|
||||
<h1>{{ page.title }}</h1>
|
||||
</header>
|
||||
{% if page.description %}
|
||||
|
|
|
@ -6,7 +6,7 @@ layout: default
|
|||
<article>
|
||||
<header>
|
||||
{% if page.subtitle %}<p class="subtitle">{{ page.subtitle }}</p>{% endif %}
|
||||
{% if page.image_title %}<img src="{{ site.url }}/assets/img/{{ page.image_title }}" width="970" alt="{{ page.title escape_once }}">{% endif %}
|
||||
{% if page.image.title %}<img src="{{ site.url }}/assets/img/{{ page.image.title }}" width="970" alt="{{ page.title escape_once }}">{% endif %}
|
||||
<h1>{{ page.title }}</h1>
|
||||
</header>
|
||||
{% if page.description %}
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
---
|
||||
layout: default
|
||||
---
|
||||
{% if page.image_title %}
|
||||
{% if page.image.title %}
|
||||
<div class="row top-30">
|
||||
<div class="small-12 columns">
|
||||
<img src="{{ site.url }}/assets/img/{{ page.image_title }}" width="970" alt="{{ page.title escape_once }}">
|
||||
<img src="{{ site.url }}/assets/img/{{ page.image.title }}" width="970" alt="{{ page.title escape_once }}">
|
||||
</div><!-- /.small-12.columns -->
|
||||
</div><!-- /.row -->
|
||||
{% endif %}
|
||||
|
|
Reference in a new issue