Template tags for Google DFP.
Project description
Django Google DFP
=======================
Django Google DFP provides template tags for inserting [Google DFP](http://www.google.com/dfp) ad tags.
Installation
------------
Run `pip install django-google-dfp`
Add `google_dpf` to your `INSTALLED_APPS` setting:
```python
INSTALLED_APPS = (
...
'google_dfp',
)
```
Template Tags
-------------
###ad_header
Inserts the JavaScript for serving Google DFP ads.
*This must go inside the head*
###ad_tag
Inserts the code where the ad will display. It takes an ad unit as an argument. I needs to be in the format `[identifier]_[width]x[height]`.
```html
{% load dfp_tags %}
<html>
<head>
<title>My Site</title>
{% ad_header %}
</head>
<body>
<h1>My Site</h1>
{% ad_tag 'MYSITE_728x90' %}
<p>My site's content.</p>
{% ad_tag 'MYSITE_300x200' %}
</body>
</html>
```
=======================
Django Google DFP provides template tags for inserting [Google DFP](http://www.google.com/dfp) ad tags.
Installation
------------
Run `pip install django-google-dfp`
Add `google_dpf` to your `INSTALLED_APPS` setting:
```python
INSTALLED_APPS = (
...
'google_dfp',
)
```
Template Tags
-------------
###ad_header
Inserts the JavaScript for serving Google DFP ads.
*This must go inside the head*
###ad_tag
Inserts the code where the ad will display. It takes an ad unit as an argument. I needs to be in the format `[identifier]_[width]x[height]`.
```html
{% load dfp_tags %}
<html>
<head>
<title>My Site</title>
{% ad_header %}
</head>
<body>
<h1>My Site</h1>
{% ad_tag 'MYSITE_728x90' %}
<p>My site's content.</p>
{% ad_tag 'MYSITE_300x200' %}
</body>
</html>
```
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-google-dfp-0.1a2.zip
(7.6 kB
view hashes)