Skip to content

Commit

Permalink
Merge pull request #20 from SimonMueller/develop
Browse files Browse the repository at this point in the history
Release v1.1.1
  • Loading branch information
SimonMueller authored Sep 23, 2018
2 parents 25f8f3a + 29ae0e5 commit f8d9610
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 30 deletions.
45 changes: 26 additions & 19 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,28 @@
# v1.0.0
## 19.12.2017
# v1.1.1
## 23.09.2018

1. [](#improved)
* reversed changelog order for better readability
* simplify br html tags

# v1.1.0
## 22.09.2018

1. [](#improved)
* dev package updates
* font-awesome updated to version 5.x

# v1.0.3
## 9.01.2018

1. [](#bugfix)
* Fix pagination base_url with relative URLs

# v1.0.2
## 6.01.2018

1. [](#new)
* Initial release
* Added CONTRIBUTING.md

# v1.0.1
## 30.12.2017
Expand All @@ -16,21 +36,8 @@
* Correct padding of footer widget
* Fix display of publish date

# v1.0.2
## 6.01.2018
# v1.0.0
## 19.12.2017

1. [](#new)
* Added CONTRIBUTING.md

# v1.0.3
## 9.01.2018

1. [](#bugfix)
* Fix pagination base_url with relative URLs

# v1.1.0
## 22.09.2018

1. [](#improved)
* dev package updates
* font-awesome updated to version 5.x
* Initial release
2 changes: 1 addition & 1 deletion blueprints.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: pluspunkt
version: 1.1.0
version: 1.1.1
description: A simple, responsive and modern Grav theme built with Kube
author:
name: Simon Müller
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "grav-theme-pluspunkt",
"version": "1.1.0",
"version": "1.1.1",
"description": "A simple, responsive and modern Grav theme built with Kube",
"keywords": [
"pluspunkt",
Expand Down
2 changes: 1 addition & 1 deletion templates/partials/about_item.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<div class="text-center">
<h3 class="text-center donthyphenate">
<a href="{{ page.url }}">{{page.title}}</a>
</br>
<br>
</h3>
{% include 'partials/taxonomies.html.twig' %}
</div>
Expand Down
12 changes: 6 additions & 6 deletions templates/partials/address.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

<address class="{{ classes }}">
{% if organization.name %}
<span>{{ organization.name }}</span></br>
<span>{{ organization.name }}</span><br>
{% endif %}

{% if organization.address.street %}
<span>{{ organization.address.street }}</span></br>
<span>{{ organization.address.street }}</span><br>
{% endif %}

{% if organization.address.country_code and organization.address.zip_code %}
Expand All @@ -16,20 +16,20 @@
{% endif %}

{% if organization.address.city %}
<span>{{ organization.address.city }}</span></br>
<span>{{ organization.address.city }}</span><br>
{% endif %}

{% if organization.address.region %}
<span>{{organization.address.region }}</span></br>
<span>{{organization.address.region }}</span><br>
{% endif %}

{% if organization.email %}
</br>
<br>
<a class="{{ classes }}" href="mailto:{{ organization.email|safe_email }}">{{ organization.email|safe_email }}</a>
{% endif %}

{% if organization.phone %}
</br>
<br>
<a class="{{ classes }}" href="tel:{{ organization.phone|safe_email }}">{{ organization.phone|safe_email }}</a>
{% endif %}
</address>
2 changes: 1 addition & 1 deletion templates/partials/footer.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<div>
<p class="text-center small">
<span class="small"><i class="far fa-copyright" aria-hidden="true"></i> {{ 'now'|date('Y') }}</span>
</br>
<br>
<span>Made with </span>
<i class="fas fa-heart" aria-hidden="true"></i>
<span>+</span>
Expand Down

0 comments on commit f8d9610

Please sign in to comment.