Automatically exported from code.google.com/p/planningalerts
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

rss.tpl 1021 B

17 år sedan
17 år sedan
17 år sedan
17 år sedan
17 år sedan
17 år sedan
17 år sedan
17 år sedan
17 år sedan
17 år sedan
17 år sedan
1234567891011121314151617181920
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <rss version="2.0" xmlns:georss="http://www.georss.org/georss">
  3. <channel>
  4. <title>PlanningAlerts.com</title>
  5. <link>http://www.planningalerts.com/</link>
  6. <description></description>
  7. {foreach name="applications" from="$applications" item="application"}
  8. <item>
  9. <title>{$application->address}</title>
  10. <pubDate>{$application->date_scraped|date_format:"%a, %e %b %Y"}</pubDate>
  11. <guid isPermaLink="false">{$application->council_reference}</guid>
  12. <georss:featurename>{$application->address}</georss:featurename>
  13. <georss:point>{$application->lat} {$application->lon}</georss:point>
  14. <description><![CDATA[{$application->description}]]></description>
  15. <link><![CDATA[{$application->info_url}]]></link>
  16. <comments><![CDATA[{$application->comment_url}]]></comments>
  17. </item>
  18. {/foreach}
  19. </channel>
  20. </rss>