Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
danpros committed Nov 23, 2015
1 parent c1f8079 commit 5f271a2
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
5 changes: 5 additions & 0 deletions themes/blog/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -611,4 +611,9 @@ ul.month {
.container {
width: 1360px;
}
}

.pagination {
margin-top:0;
margin-bottom:15px;
}
1 change: 0 additions & 1 deletion themes/blog/js/.htaccess

This file was deleted.

1 change: 0 additions & 1 deletion themes/default/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,6 @@ h1.title-post a:hover, h2.title-index a:hover {
font-family: 'Open Sans', sans-serif;
font-size: 12px;
font-weight: bold;
text-align:center;
}

.pager a {
Expand Down
5 changes: 2 additions & 3 deletions themes/default/main.html.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,10 @@
<?php if (!empty($pagination['prev']) || !empty($pagination['next'])): ?>
<div class="pager">
<?php if (!empty($pagination['prev'])): ?>
<span class="newer"><a href="?page=<?php echo $page - 1 ?>" rel="prev">Newer</a></span>
<span><a href="?page=<?php echo $page - 1 ?>" class="pagination-arrow newer" rel="prev">Newer</a></span>
<?php endif; ?>
<span class="page-number"><?php echo $pagination['pagenum']; ?></span>
<?php if (!empty($pagination['next'])): ?>
<span class="older"><a href="?page=<?php echo $page + 1 ?>" rel="next">Older</a></span>
<span><a href="?page=<?php echo $page + 1 ?>" class="pagination-arrow older" rel="next">Older</a></span>
<?php endif; ?>
</div>
<?php endif; ?>
Expand Down
5 changes: 2 additions & 3 deletions themes/default/profile.html.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,10 @@
<?php if (!empty($pagination['prev']) || !empty($pagination['next'])): ?>
<div class="pager">
<?php if (!empty($pagination['prev'])): ?>
<span class="newer"><a href="?page=<?php echo $page - 1 ?>" rel="prev">Newer</a></span>
<span><a href="?page=<?php echo $page - 1 ?>" class="pagination-arrow newer" rel="prev">Newer</a></span>
<?php endif; ?>
<span class="page-number"><?php echo $pagination['pagenum']; ?></span>
<?php if (!empty($pagination['next'])): ?>
<span class="older"><a href="?page=<?php echo $page + 1 ?>" rel="next">Older</a></span>
<span><a href="?page=<?php echo $page + 1 ?>" class="pagination-arrow older" rel="next">Older</a></span>
<?php endif; ?>
</div>
<?php endif; ?>
Expand Down

0 comments on commit 5f271a2

Please sign in to comment.