Browse Source

Merge pull request #1563 from bramley/footer_span_element

Remove spurious </span> from theme footer
Diego Najar 1 year ago
parent
commit
16cd57029b
2 changed files with 6 additions and 6 deletions
  1. 3 3
      bl-themes/alternative/php/footer.php
  2. 3 3
      bl-themes/blogx/php/footer.php

+ 3 - 3
bl-themes/alternative/php/footer.php

@@ -1,5 +1,5 @@
 <footer class="footer bg-dark">
-	<div class="container">
-		<p class="m-0 text-center text-white text-uppercase"><?php echo $site->footer(); ?><span class="ml-5 text-warning"><img class="mini-logo" src="<?php echo DOMAIN_THEME_IMG.'favicon.png'; ?>"/> Powered by <a target="_blank" class="text-white" href="https://www.bludit.com"><?php echo (defined('BLUDIT_PRO'))?'BLUDIT PRO':'BLUDIT' ?></span></a></span></p>
-	</div>
+    <div class="container">
+        <p class="m-0 text-center text-white text-uppercase"><?php echo $site->footer(); ?><span class="ml-5 text-warning"><img class="mini-logo" src="<?php echo DOMAIN_THEME_IMG.'favicon.png'; ?>"/> Powered by <a target="_blank" class="text-white" href="https://www.bludit.com"><?php echo (defined('BLUDIT_PRO'))?'BLUDIT PRO':'BLUDIT' ?></a></span></p>
+    </div>
 </footer>

+ 3 - 3
bl-themes/blogx/php/footer.php

@@ -1,5 +1,5 @@
 <footer class="footer bg-dark">
-	<div class="container">
-		<p class="m-0 text-center text-white text-uppercase"><?php echo $site->footer(); ?><span class="ml-5 text-warning"><img class="mini-logo" src="<?php echo DOMAIN_THEME_IMG.'favicon.png'; ?>"/> Powered by <a target="_blank" class="text-white" href="https://www.bludit.com"><?php echo (defined('BLUDIT_PRO'))?'BLUDIT PRO':'BLUDIT' ?></span></a></span></p>
-	</div>
+    <div class="container">
+        <p class="m-0 text-center text-white text-uppercase"><?php echo $site->footer(); ?><span class="ml-5 text-warning"><img class="mini-logo" src="<?php echo DOMAIN_THEME_IMG.'favicon.png'; ?>"/> Powered by <a target="_blank" class="text-white" href="https://www.bludit.com"><?php echo (defined('BLUDIT_PRO'))?'BLUDIT PRO':'BLUDIT' ?></a></span></p>
+    </div>
 </footer>