Skip to content
This repository has been archived by the owner on Jun 29, 2019. It is now read-only.

Commit

Permalink
fixed link to category of post and removed unused js, added jquery
Browse files Browse the repository at this point in the history
  • Loading branch information
Luz Aramburo committed Dec 22, 2017
1 parent 3252c52 commit 764fef2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
6 changes: 1 addition & 5 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,7 @@
</div>

<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/util.js"></script>
<!--[if lte IE 8]><script src="assets/js/ie/respond.min.js"></script><![endif]-->
<script src="assets/js/main.js"></script>
<?php echo Theme::jquery(); ?>
<?php Theme::plugins('siteBodyEnd') ?>
</body>
</html>
2 changes: 1 addition & 1 deletion php/home.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
if( Text::isNotEmpty($User->firstName()) || Text::isNotEmpty($User->lastName()) ) {
$author = $User->firstName().' '.$User->lastName();
} ?>
<span class="category"><?php $Language->p('Category') ?>: <a href="'<?php HTML_PATH_ROOT.$Url->filters('category').'/'.$page->categoryKey() ?>'"><?php echo $page->category() ?></a></span>
<span class="category"><?php $Language->p('Category') ?>: <a href="<?php echo HTML_PATH_ROOT.$Url->filters('category').'/'.$page->categoryKey() ?>"><?php echo $page->category() ?></a></span>
<span class="author name"><?php echo $author ?></span>
</div>
</header>
Expand Down
2 changes: 1 addition & 1 deletion php/page.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
if( Text::isNotEmpty($User->firstName()) || Text::isNotEmpty($User->lastName()) ) {
$author = $User->firstName().' '.$User->lastName();
} ?>
<span class="category"><?php $Language->p('Category') ?>: <a href="'<?php HTML_PATH_ROOT.$Url->filters('category').'/'.$page->categoryKey() ?>'"><?php echo $page->category() ?></a></span>
<span class="category"><?php $Language->p('Category') ?>: <a href="<?php echo HTML_PATH_ROOT.$Url->filters('category').'/'.$page->categoryKey() ?>"><?php echo $page->category() ?></a></span>
<span class="author name"><?php echo $author ?></span>
</div>
</header>
Expand Down

0 comments on commit 764fef2

Please sign in to comment.