-
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
6 changed files
with
135 additions
and
26 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Contributing | ||
|
||
We are happy to review any contributions you want to make. When contributing, please: | ||
|
||
- Fork from, and compare pull requests against, the `develop` branch. | ||
|
||
- Adhere to the [PSR-2 Coding Standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md). | ||
|
||
- Include tests. We strive for 100% test coverage at all times. | ||
|
||
- Describe any backwards-compatiblity breaking changes. As the project is still unstable, BC breaks are not as critical, but they are important to note. | ||
|
||
The time between submitting a contribution and its review one may be extensive; do not be discouraged if there is not immediate feedback. Thanks! |
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,3 +1,49 @@ | ||
<head> | ||
<title><?php echo $this->page->getTitle(); ?></title> | ||
<style> | ||
nav table { | ||
width: 100%; | ||
} | ||
|
||
nav.navheader td.curr, | ||
nav.navheader th.curr { | ||
text-align: center; | ||
} | ||
|
||
nav.navheader td.prev, | ||
nav.navheader th.prev { | ||
width: 30%; | ||
text-align: left; | ||
} | ||
|
||
nav.navheader td.parent, | ||
nav.navheader th.parent { | ||
width: 40%; | ||
text-align: center; | ||
} | ||
|
||
nav.navheader td.next, | ||
nav.navheader th.next { | ||
text-align: right; | ||
width: 30%; | ||
} | ||
|
||
nav.navfooter td.prev, | ||
nav.navfooter th.prev { | ||
width: 30%; | ||
text-align: left; | ||
} | ||
|
||
nav.navfooter td.parent, | ||
nav.navfooter th.parent { | ||
width: 40%; | ||
text-align: center; | ||
} | ||
|
||
nav.navfooter td.next, | ||
nav.navfooter th.next { | ||
text-align: right; | ||
width: 30%; | ||
} | ||
</style> | ||
</head> |
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