Skip to content

Commit

Permalink
Fix HTML
Browse files Browse the repository at this point in the history
- Remove nested <ul>
- Add missing closing </li>
- Add missing </div> in footer (bot.php)
  • Loading branch information
dregad committed Apr 3, 2018
1 parent 3b03a0c commit 5d5be63
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 41 deletions.
16 changes: 9 additions & 7 deletions bot.php
@@ -1,4 +1,5 @@
</div>
</div>

<br><br>

Expand Down Expand Up @@ -50,23 +51,24 @@
Released under the terms of the GNU General Public License (GPL).
</p>
</div>
</div>
</div>
</div>
</div>

<div class="footer-bottom">
<div class="container">
<div class="row show-grid">
<div class="col-sm-12 col-md-12">
<p>Copyright © 2000 - <?php echo date('Y') ?> MantisBT Team</p>
</div>
<div class="footer-bottom">
<div class="container">
<div class="row show-grid">
<div class="col-sm-12 col-md-12">
<p>Copyright © 2000 - <?php echo date('Y') ?> MantisBT Team</p>
</div>
</div>
</div>
</div>
</footer>
<!-- END FOOTER -->

</div>
</div>

<!-- Placed at the end of the document so the pages load faster -->

Expand Down
16 changes: 7 additions & 9 deletions development.php
Expand Up @@ -33,15 +33,13 @@
GitHub's Help pages.
</p>
<h3>MantisBT source code:</h3>
<ul class="icons">
<ul class="item-details">
<li>
<i class="icon-github"></i> <a href="https://github.com/mantisbt/mantisbt">Master Repository</a>
<li>
<li>
<i class="icon-github"></i> <a href="https://github.com/mantisbt-plugins">Plugins Repository</a>
<li>
</ul>
<ul class="icons item-details">
<li>
<i class="icon-github"></i> <a href="https://github.com/mantisbt/mantisbt">Master Repository</a>
</li>
<li>
<i class="icon-github"></i> <a href="https://github.com/mantisbt-plugins">Plugins Repository</a>
</li>
</ul>
</div>
<div class="col-sm-3 col-md-3 note-stick stick pull-right">
Expand Down
48 changes: 23 additions & 25 deletions doc_dev_inc.php
Expand Up @@ -13,31 +13,29 @@
GitHub's Help pages.
</p>

<ul class="icons">
<ul class="item-details">
<li>
<i class="icon-book"></i>
<a href="<?php echo $g_wiki_url; ?>doku.php/mantisbt:developers_corner">
Developer's Corner
</a>
</li>
<li>
<i class="icon-book"></i>
<a href="<?php echo $g_docs_url, $g_docs_path, $g_docs_dev_guide; ?>">
Developer's Guide
</a>
</li>
<li>
<i class="icon-sitemap"></i>
<a href="<?php echo $g_docs_url, $g_docs_erd_path; ?>latest.pdf">
Entity-Relationship Diagram
</a>
</li>
<li>
<i class="icon-github"></i>
<a href="https://help.github.com">GitHub Help</a>
</li>
</ul>
<ul class="icons item-details">
<li>
<i class="icon-book"></i>
<a href="<?php echo $g_wiki_url; ?>doku.php/mantisbt:developers_corner">
Developer's Corner
</a>
</li>
<li>
<i class="icon-book"></i>
<a href="<?php echo $g_docs_url, $g_docs_path, $g_docs_dev_guide; ?>">
Developer's Guide
</a>
</li>
<li>
<i class="icon-sitemap"></i>
<a href="<?php echo $g_docs_url, $g_docs_erd_path; ?>latest.pdf">
Entity-Relationship Diagram
</a>
</li>
<li>
<i class="icon-github"></i>
<a href="https://help.github.com">GitHub Help</a>
</li>
</ul>
</div>
<div class="col-md-1 col-sm-1"></div>
Expand Down

0 comments on commit 5d5be63

Please sign in to comment.