I am using the Newsfeed module to display my tweets from Twitter. I am using the XSLT file provided with Newsfeed. The problem is that it displays the timestap in an inelegant way.
The code looks like this: <xsl:value-of select="pubDate"/>
The output looks like this: Thu, 18 Oct 2012 20:22:07 +0000
How do I:
- Change it from 24 hour clock to 12 hour clock?
- Remove the seconds?
- Remove the +0000
If I can't do those, how do I remove the time altogether and only display the date?
Thanks,
Aaron