基本的に、単純な広告バナー コードと、スクリプトでケース化された別の広告タイプを追加しようとしていますが、表示されません。show.html.erb
基本的に人々のプロフィールである私のビューにそれを入れようとしています。
広告スクリプトを含めようとしている場所を示す完全なコードを次に示します。コードを別の場所に配置する必要がありますか?
<script src="/jquery.js" type="text/javascript"></script>
<link href="/src/facebox.css" media="screen" rel="stylesheet" type="text/css"/>
<script src="/src/facebox.js" type="text/javascript"></script>
<script language="javascript">
jQuery(document).ready(function($) {
$('a[rel*=facebox]').facebox()
})
</script>
<% provide(:title, @user.name) %>
<div class="row">
<aside class="span4">
<section>
<h1>
<%= @user.name %>
</h1>
</section>
<section>
<%= render 'shared/stats' %>
</section>
<br>
</aside>
<div class="span10">
<%= render 'follow_form' if signed_in? %>
<% if @user.microposts.empty? %>
<h3>Profile</h3>
<% end %>
<% if @user.microposts.any? %>
<h3>Browse Text</h3>
<ol class="microposts">
<%= render @microposts %>
</ol>
<script type="text/javascript" src="http://www.URLofAdProvider.com/widget/11xxxxxxxx/"></script>
<% end %>
</div>
</div>
<script type="text/javascript"><!--
google_ad_client = "ca-pub-xxxxxxxxxxxx";
/* Ad1 */
google_ad_slot = "xxxxxxxxxxx";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
一番下の 2 つのスクリプトは、Ad スクリプトです。どちらも登場させられない。表示できない理由を知っている人はいますか?