为什么广告没有出现在我的Rails应用/网站上?

时间:2013-03-28 03:24:33

标签: ruby-on-rails ruby adsense

我基本上试图添加一个简单的广告横幅代码和其他广告类型,但是它们没有显示出来。我试图将它放入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>

底部的两个脚本是广告脚本。我不能让他们中的任何一个出现。有谁知道为什么我不能展示它们?

0 个答案:

没有答案