Skip to content
This repository has been archived by the owner on Dec 1, 2023. It is now read-only.

Commit

Permalink
Merge branch 'release/1.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
malte-christian committed Apr 13, 2016
2 parents 3c9a3af + 4966256 commit 722a168
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 1.0.0 (April 13, 2016)

### Changed
- Changed article divider

## 0.11.1 (April 7, 2016)

### Added
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "pagekit/theme-one",
"type": "pagekit-theme",
"version": "0.11.1",
"version": "1.0.0",
"title": "One",
"description": "Pagekit's default theme.",
"license": "MIT",
Expand Down
Binary file modified image.jpg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 12 additions & 1 deletion less/uikit/article.less
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,18 @@

.hook-article-misc() {

.uk-article-title a:hover { border-bottom: 1px solid @global-color; }
.uk-article + .uk-article {
padding-top: @article-margin-top;
border-top: 1px solid @global-border;
}

/* Tablet and bigger */
@media (min-width: @breakpoint-medium) {
.uk-article + .uk-article {
margin-top: (@article-margin-top + 50px);
padding-top: (@article-margin-top + 50px);
}
}

.uk-article .uk-subnav a:hover,
.uk-article .uk-subnav a:focus { text-decoration: underline; }
Expand Down
2 changes: 1 addition & 1 deletion views/blog/posts.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<div class="uk-margin"><?= $post->excerpt ?: $post->content ?></div>

<div class="uk-margin-large-top">
<ul class="uk-subnav">
<ul class="uk-subnav uk-margin-bottom-remove">

<?php if (isset($post->readmore) && $post->readmore || $post->excerpt) : ?>
<li><a href="<?= $view->url('@blog/id', ['id' => $post->id]) ?>"><?= __('Read more') ?></a></li>
Expand Down

0 comments on commit 722a168

Please sign in to comment.