-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
104 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
# v2.0.1 | ||
## 02/18/2016 | ||
|
||
1. [](#bugfix) | ||
* Fix sidebar | ||
|
||
# v2.0.0 | ||
## 02/18/2016 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "grav-theme-medium", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"authors": [ | ||
"Matthew Blode" | ||
], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
.infinite-scroll { | ||
padding: 0; | ||
} | ||
|
||
@include breakpoint(medium) { | ||
.infinite-scroll { | ||
padding-left: 15px; | ||
padding-right: 15px; | ||
} | ||
} | ||
|
||
.post-list { | ||
background-color: $white; | ||
border: 1px solid rgba(0, 0, 0, .0392157); | ||
box-shadow: 0 1px 4px rgba(0, 0, 0, .025), 0 1px 4px rgba(0, 0, 0, .03); | ||
border-radius: 3px; | ||
margin-bottom: 15px; | ||
margin-top: 5px; | ||
|
||
a { | ||
color: $black; | ||
display: block; | ||
} | ||
|
||
img { | ||
display: block; | ||
margin-bottom: 10px; | ||
margin-top: 10px; | ||
max-height: 240px; | ||
width: auto; | ||
} | ||
} | ||
|
||
.post-list--data { | ||
padding: 15px; | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{% extends 'partials/base.html.twig' %} | ||
|
||
{% block header %} | ||
{% if page.header.profile %} | ||
{% include 'partials/profile.html.twig' %} | ||
{% else %} | ||
{{ parent() }} | ||
{% endif %} | ||
{% endblock %} | ||
|
||
{% block content %} | ||
<div class="columns small-12"> | ||
{{ page.content }} | ||
</div> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{% extends 'partials/simplesearch_base.html.twig' %} | ||
|
||
{% block content %} | ||
<div class="column small-12"> | ||
<div class="content-padding simplesearch"> | ||
<h1 class="search-header">Search Results</h1> | ||
<div class="center"> | ||
{% include 'partials/simplesearch_searchbox.html.twig' %} | ||
|
||
</div> | ||
|
||
|
||
<p>Query: <strong>{{ query }}</strong> found {{ search_results.count }} {{ 'result'|pluralize(search_results.count) }}</p> | ||
{% for page in search_results %} | ||
{% include 'partials/simplesearch_item.html.twig' with {'page':page} %} | ||
{% endfor %} | ||
</div> | ||
</div> | ||
{% endblock %} |