mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 10:43:55 +00:00
Use pi.hole when getting js and css
If a user is able to get to this page, they must be using Pi-hole
This commit is contained in:
parent
089b98430f
commit
7fd7430d38
1 changed files with 5 additions and 5 deletions
|
@ -51,8 +51,8 @@ if($uri == "/")
|
||||||
<head>
|
<head>
|
||||||
<meta charset='UTF-8'/>
|
<meta charset='UTF-8'/>
|
||||||
<title>Website Blocked</title>
|
<title>Website Blocked</title>
|
||||||
<link rel='stylesheet' href='http://<?php echo $_SERVER['SERVER_ADDR']; ?>/admin/blockingpage.css'/>
|
<link rel='stylesheet' href='http://pi.hole/admin/blockingpage.css'/>
|
||||||
<link rel='shortcut icon' href='http://<?php echo $_SERVER['SERVER_ADDR']; ?>/admin/img/favicon.png' type='image/png'/>
|
<link rel='shortcut icon' href='http://pi.hole/admin/img/favicon.png' type='image/png'/>
|
||||||
<meta name='viewport' content='width=device-width,initial-scale=1.0,maximum-scale=1.0, user-scalable=no'/>
|
<meta name='viewport' content='width=device-width,initial-scale=1.0,maximum-scale=1.0, user-scalable=no'/>
|
||||||
<meta name='robots' content='noindex,nofollow'/>
|
<meta name='robots' content='noindex,nofollow'/>
|
||||||
</head>
|
</head>
|
||||||
|
@ -87,8 +87,8 @@ if($uri == "/")
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
<footer>Generated <?php echo date('D g:i A, M d'); ?> by Pi-hole <?php echo $piHoleVersion; ?></footer>
|
<footer>Generated <?php echo date('D g:i A, M d'); ?> by Pi-hole <?php echo $piHoleVersion; ?></footer>
|
||||||
<script src="http://<?php echo $_SERVER['SERVER_ADDR']; ?>/admin/js/other/jquery.min.js"></script>
|
<script src="http://pi.hole/admin/js/other/jquery.min.js"></script>
|
||||||
<script src="http://<?php echo $_SERVER['SERVER_ADDR']; ?>/admin/js/pihole/queryads.js"></script>
|
<script src="http://pi.hole/admin/js/pihole/queryads.js"></script>
|
||||||
<script>
|
<script>
|
||||||
function inIframe () {
|
function inIframe () {
|
||||||
try {
|
try {
|
||||||
|
@ -142,7 +142,7 @@ function add() {
|
||||||
},
|
},
|
||||||
error: function(jqXHR, exception) {
|
error: function(jqXHR, exception) {
|
||||||
$( "#whitelistingoutput" ).removeAttr( "hidden" );
|
$( "#whitelistingoutput" ).removeAttr( "hidden" );
|
||||||
$( "#whitelistingoutput" ).html("---> "+response+" <---");
|
$( "#whitelistingoutput" ).html("---> Unknown Error <---");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue