Skip to content

Commit

Permalink
Clean up Links.
Browse files Browse the repository at this point in the history
Remove broken links.
  • Loading branch information
markstory committed Aug 3, 2015
1 parent 3d38c90 commit 81dc27d
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 11 deletions.
2 changes: 0 additions & 2 deletions src/Template/Bookmarks/add.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
<h3><?= __('Actions') ?></h3>
<ul class="side-nav">
<li><?= $this->Html->link(__('List Bookmarks'), ['action' => 'index']) ?></li>
<li><?= $this->Html->link(__('List Tags'), ['controller' => 'Tags', 'action' => 'index']) ?></li>
<li><?= $this->Html->link(__('New Tag'), ['controller' => 'Tags', 'action' => 'add']) ?></li>
</ul>
</div>
<div class="bookmarks form large-10 medium-9 columns">
Expand Down
2 changes: 0 additions & 2 deletions src/Template/Bookmarks/edit.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@
)
?></li>
<li><?= $this->Html->link(__('List Bookmarks'), ['action' => 'index']) ?></li>
<li><?= $this->Html->link(__('List Tags'), ['controller' => 'Tags', 'action' => 'index']) ?></li>
<li><?= $this->Html->link(__('New Tag'), ['controller' => 'Tags', 'action' => 'add']) ?></li>
</ul>
</div>
<div class="bookmarks form large-10 medium-9 columns">
Expand Down
3 changes: 0 additions & 3 deletions src/Template/Bookmarks/index.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@
<h3><?= __('Actions') ?></h3>
<ul class="side-nav">
<li><?= $this->Html->link(__('New Bookmark'), ['action' => 'add']) ?></li>
<li><?= $this->Html->link(__('List Users'), ['controller' => 'Users', 'action' => 'index']) ?></li>
<li><?= $this->Html->link(__('New User'), ['controller' => 'Users', 'action' => 'add']) ?></li>
<li><?= $this->Html->link(__('List Tags'), ['controller' => 'Tags', 'action' => 'index']) ?></li>
<li><?= $this->Html->link(__('New Tag'), ['controller' => 'Tags', 'action' => 'add']) ?></li>
</ul>
</div>
<div class="bookmarks index large-10 medium-9 columns">
Expand Down
4 changes: 0 additions & 4 deletions src/Template/Bookmarks/view.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@
<li><?= $this->Form->postLink(__('Delete Bookmark'), ['action' => 'delete', $bookmark->id], ['confirm' => __('Are you sure you want to delete # {0}?', $bookmark->id)]) ?> </li>
<li><?= $this->Html->link(__('List Bookmarks'), ['action' => 'index']) ?> </li>
<li><?= $this->Html->link(__('New Bookmark'), ['action' => 'add']) ?> </li>
<li><?= $this->Html->link(__('List Users'), ['controller' => 'Users', 'action' => 'index']) ?> </li>
<li><?= $this->Html->link(__('New User'), ['controller' => 'Users', 'action' => 'add']) ?> </li>
<li><?= $this->Html->link(__('List Tags'), ['controller' => 'Tags', 'action' => 'index']) ?> </li>
<li><?= $this->Html->link(__('New Tag'), ['controller' => 'Tags', 'action' => 'add']) ?> </li>
</ul>
</div>
<div class="bookmarks view large-10 medium-9 columns">
Expand Down

0 comments on commit 81dc27d

Please sign in to comment.