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

Commit

Permalink
added changelog and updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
saschadube committed Sep 14, 2015
1 parent 382d207 commit 8b378b6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Changelog

### 0.9.1 (September 14, 2015)

- Fixed undefined index `hero`
- Fixed blog markup

### 0.9.0 (September 10, 2015)

- Initial release
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.9.0",
"version": "0.9.1",
"title": "One",
"description": "Pagekit's default theme.",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@

$classes = [
'navbar' => 'tm-navbar',
'hero' => '',
'hero' => ''
];

$sticky = [
Expand All @@ -124,7 +124,7 @@
];

if ($event['hero_viewport']) {
$classes['hero'] .= 'tm-hero-height';
$classes['hero'] = 'tm-hero-height';
}

// Sticky overlay navbar if hero position exists
Expand Down

0 comments on commit 8b378b6

Please sign in to comment.