如何在Django模板中使用adsense进行更改

时间:2018-08-30 22:47:09

标签: python django django-templates django-views adsense

我将在我的网站中使用adsense。例如;我有base.html,post_list.html和post_detail.html。我将在base.html中使用adsense块。用户在post_list页面中输入帖子详细信息按钮,如果我们转到帖子详细信息页面,则广告会更改。想象一下: base.html

    private void playVideo(string file)
    {
        int tc6 = 0;

        try
        {
            axWMPn[0].URL = file;
        }
        catch (System.Runtime.InteropServices.COMException comEx)
        {
            Console.WriteLine("playVideo COMException 0: " + comEx.Source + "  -- " + comEx.Message);
        }

post.html:

<html>
  <head>
   ....
  </head>
  <body>
    <nav>
     ....
    </nav>
    <div class="adsense">
        adsense block
    </div>
{% block content %}

{% endblock content %}

post_detail.html:

{% extends 'base.html' %}

   {% block content %}
      for post in post list:
         <a href="{% url 'post_detail' post.id">Post Detail</a>
   {% endblock content %}

我是Django的新程序员。我正在使用嵌套的Django模板。我正在创建社交应用,我需要钱。这对我很重要,因为我将在自己的网站中再使用一个adsense。谢谢:)

我的应用程序中的urls.py

{% extends 'base.html' %}

   {% block content %}
      post detail
   {% endblock content %}

是页面更改时用作基本重新加载的模板

0 个答案:

没有答案