Merge branch 'release/1.1.1'
This commit is contained in:
commit
f2750f9e9b
7 changed files with 17 additions and 7 deletions
|
@ -1,3 +1,11 @@
|
||||||
|
# v1.1.1
|
||||||
|
## 09/18/2015
|
||||||
|
|
||||||
|
1. [](#improved)
|
||||||
|
* compatibility with newest Grav version.
|
||||||
|
1. [](#bugfix)
|
||||||
|
* SimpleForm compatibility bugfixes.
|
||||||
|
|
||||||
# v1.1.0
|
# v1.1.0
|
||||||
## 08/25/2015
|
## 08/25/2015
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
name: Deliver
|
name: Deliver
|
||||||
version: 1.1.0
|
version: 1.1.1
|
||||||
description: "Deliver theme is a port of the Michael Reimer's Deliver Free PSD theme."
|
description: "Deliver theme is a port of the Michael Reimer's Deliver Free PSD theme."
|
||||||
icon: newspaper-o
|
icon: newspaper-o
|
||||||
author:
|
author:
|
||||||
|
|
|
@ -1327,7 +1327,8 @@ ul.pagination {
|
||||||
font-size: 1rem; }
|
font-size: 1rem; }
|
||||||
.contact button {
|
.contact button {
|
||||||
font-family: "novecento_sans_widedemibold", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
|
font-family: "novecento_sans_widedemibold", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
|
||||||
text-transform: uppercase; }
|
text-transform: uppercase;
|
||||||
|
display: block; }
|
||||||
.contact #simple_form-success, .contact #simple_form-submit {
|
.contact #simple_form-success, .contact #simple_form-submit {
|
||||||
display: inline-block; }
|
display: inline-block; }
|
||||||
.contact #simple_form-success strong, .contact #simple_form-success label, .contact #simple_form-success th, .contact #simple_form-submit strong, .contact #simple_form-submit label, .contact #simple_form-submit th {
|
.contact #simple_form-success strong, .contact #simple_form-success label, .contact #simple_form-success th, .contact #simple_form-submit strong, .contact #simple_form-submit label, .contact #simple_form-submit th {
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -43,6 +43,7 @@
|
||||||
@extend .default-animation;
|
@extend .default-animation;
|
||||||
font-family: $font-family-header;
|
font-family: $font-family-header;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
display: block;
|
||||||
}
|
}
|
||||||
#simple_form-success, #simple_form-submit {
|
#simple_form-success, #simple_form-submit {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends 'partials/base.html.twig' %}
|
{% extends 'partials/base.html.twig' %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{{ page.content }}
|
<p>{{ page.content }}</p>
|
||||||
{% endblock %}
|
{% endblock %}
|
|
@ -2,9 +2,9 @@
|
||||||
<div class="g-grid pure-g-r">
|
<div class="g-grid pure-g-r">
|
||||||
<div id="listing" class="g-block pure-u-2-3">
|
<div id="listing" class="g-block pure-u-2-3">
|
||||||
{% if config.plugins.simple_form.enabled %}
|
{% if config.plugins.simple_form.enabled %}
|
||||||
{% set simple_form_config = page.header.simple_form ?: config.themes.deliver.simple_form %}
|
{% set simple_form_config = page.header.simple_form ?: config.themes.deliver.simple_form %}
|
||||||
{{ simple_form(simple_form_config) }}
|
{{ simple_form(simple_form_config) }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
<div id="sidebar" class="g-block size-1-3 pure-u-1-3">
|
<div id="sidebar" class="g-block size-1-3 pure-u-1-3">
|
||||||
{{ content }}
|
{{ content }}
|
||||||
|
|
Loading…
Reference in a new issue