home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2011 October / maximum-cd-2011-10.iso / DiscContents / digsby_setup.exe / lib / plugins / twitter / res / content.tenjin < prev    next >
Encoding:
Text File  |  2011-02-03  |  1.3 KB  |  39 lines

  1. <div class="twitter_content">
  2. <?py include(r"#{{app.resource('status.tenjin')}}") ?>
  3. <hr class="content_hr"/>
  4.  
  5. <?py alerts_style = "" if acct.should_show_unread_counts() else "display:none;" ?>
  6.  
  7. <div class="alerts-section" style="${alerts_style}">
  8.     <div class="title" style="display:inline-block;">${{_('Alerts')}}</div>
  9.     <span class="alertToggleLink link">
  10.         <a href="^_^_disable_unread_counts" 
  11.           onClick="javascript:$('.alerts-section').toggle();$('.showAlertToggle').toggle();">
  12.               Hide
  13.         </a>
  14.     </span>
  15. <?py include(r"#{{app.resource('alerts.tenjin')}}") ?>
  16.     <hr class="content_hr header_bottom"/>
  17. </div>
  18.  
  19. <?py showlink_style = "display:none;" if acct.should_show_unread_counts() else "" ?>
  20.  
  21. <div class="title date-separator" style="display:inline-block;">Timeline</div>
  22. <span class="showAlertToggle alertToggleLink link" style="${showlink_style}">
  23.     <a href="^_^_enable_unread_counts" 
  24.        onClick="javascript:$('.alerts-section').toggle();$('.showAlertToggle').toggle();">
  25.            ${{_('Show Alerts')}}
  26.     </a>
  27. </span>
  28.  
  29. <div class="tweets" >
  30. <?py include(r"#{{app.resource('tweets.tenjin')}}") ?>
  31. </div>
  32. <div class="trending">
  33. <hr class="content_hr footer_top"/>
  34. <div class="title">${{_('Trending Topics')}}</div>
  35. <?py include(r"#{{app.resource('trends.tenjin')}}") ?>
  36. </div>
  37. </div>
  38.  
  39.