Browse Source

Update

pull/255/head v2.6.6
Danang Probo Sayekti 10 years ago
parent
commit
5f271a2370
5 changed files with 9 additions and 8 deletions
  1. +5
    -0
      themes/blog/css/styles.css
  2. +0
    -1
      themes/blog/js/.htaccess
  3. +0
    -1
      themes/default/css/style.css
  4. +2
    -3
      themes/default/main.html.php
  5. +2
    -3
      themes/default/profile.html.php

+ 5
- 0
themes/blog/css/styles.css View File

@ -611,4 +611,9 @@ ul.month {
.container { .container {
width: 1360px; width: 1360px;
} }
}
.pagination {
margin-top:0;
margin-bottom:15px;
} }

+ 0
- 1
themes/blog/js/.htaccess View File

@ -1 +0,0 @@
allow from all

+ 0
- 1
themes/default/css/style.css View File

@ -739,7 +739,6 @@ h1.title-post a:hover, h2.title-index a:hover {
font-family: 'Open Sans', sans-serif; font-family: 'Open Sans', sans-serif;
font-size: 12px; font-size: 12px;
font-weight: bold; font-weight: bold;
text-align:center;
} }
.pager a { .pager a {


+ 2
- 3
themes/default/main.html.php View File

@ -71,11 +71,10 @@
<?php if (!empty($pagination['prev']) || !empty($pagination['next'])): ?> <?php if (!empty($pagination['prev']) || !empty($pagination['next'])): ?>
<div class="pager"> <div class="pager">
<?php if (!empty($pagination['prev'])): ?> <?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; ?> <?php endif; ?>
<span class="page-number"><?php echo $pagination['pagenum']; ?></span>
<?php if (!empty($pagination['next'])): ?> <?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; ?> <?php endif; ?>
</div> </div>
<?php endif; ?> <?php endif; ?>


+ 2
- 3
themes/default/profile.html.php View File

@ -29,11 +29,10 @@
<?php if (!empty($pagination['prev']) || !empty($pagination['next'])): ?> <?php if (!empty($pagination['prev']) || !empty($pagination['next'])): ?>
<div class="pager"> <div class="pager">
<?php if (!empty($pagination['prev'])): ?> <?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; ?> <?php endif; ?>
<span class="page-number"><?php echo $pagination['pagenum']; ?></span>
<?php if (!empty($pagination['next'])): ?> <?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; ?> <?php endif; ?>
</div> </div>
<?php endif; ?> <?php endif; ?>


Loading…
Cancel
Save