モバイルサイトに表示するGoogleAdSense広告を取得しようとしています。私はDjangoを使用してWebページを提供し、JQueryMobileを使用してコンテンツを表示およびフォーマットしています。静的なHTMLページでこれらのブログの指示に従いましたが、広告は正常に表示されます。ベーステンプレートでまったく同じコードを使用すると、モバイル広告が表示されません。HTMLソースコードを比較すると、それらはまったく同じように見え、すべてのリンクはまったく同じように機能します。Djangoがヘッダーに挿入して、広告が表示されないようにするものはありますか?HTMLソースは次のとおりです。
<html>
<head>
<title>Test AdSense</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.css"/>
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.js"></script>
<script type="text/javascript"><!--
google_ad_client = "ca-pub-XXXXXXXXXXXXXXXXXX";
/* LTC MobileHeader */
google_ad_slot = "XXXXXXXXXXXX";
google_ad_width = 320;
google_ad_height = 50;
//-->
</script>
</head>
<body>
<div id="Div1" data-role="page" data-ajax="false">
<header data-role="header" data-position="fixed">
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
<h1>Index Page</h1>
</header>
<section data-role="content">
<a href="page2.html" data-role="button" data-ajax="false">to Page 2</a>
</section>
<footer data-role="footer" data-position="fixed"></footer>
</div>
</body>
</html>