Statistics
| Branch: | Tag: | Revision:

root / cloudcms / templates / content / twitter_feed.html @ 5cc874ca

History | View | Annotate | Download (1.3 kB)

1
{{ load_code|safe }}
2

    
3
<div class="follow">
4
    {% if content.title %}
5
        <h3>{{ content.title|safe }}</h3>
6
    {% endif %}
7

    
8
    <a id="twitter-timeline-{{ content.id }}" 
9
       class="twitter-timeline"
10
       data-widget-id="{{ content.widget_id }}" 
11
       data-chrome="{{ content.chrome }}" 
12
       data-tweet-limit="{{ content.limit }}"
13
       data-theme="{{ content.theme }}"
14
       data-link-color="{{ content.link_color }}"
15
       {% if  %} data-border-color="{{ content.link_color }}"{% endif %}
16
       {% if  %} data-aria-polite="{{ content.aria_politeness }}"{% endif %}
17
       {% if  %} data-screen-name="{{ content.screen_name }}"{% endif %}
18
       {% if  %} data-custom-timeline-id="{{ content.custom_timeline_id }}"{% endif %}
19
       {% if  %} data-favorites-screen-name="{{ content.favorites_screen_name }}"{% endif %}
20
       {% if  %} data-list-owner-screen-name="{{ content.list_owner_screen_name }}"{% endif %}
21
       {% if  %} data-list-slug="{{ content.list_slug }}"{% endif %}
22
       {% if  %} height="{{ content.height }}"{% endif %}
23
       {% if  %}{{ content.extra_attributes }}{% endif %}
24
    ></a>
25
</div>