Skip to content

Instantly share code, notes, and snippets.

@SpacyRicochet
Created November 2, 2011 15:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save SpacyRicochet/1333955 to your computer and use it in GitHub Desktop.
Save SpacyRicochet/1333955 to your computer and use it in GitHub Desktop.
Quick and dirty html template for news articles in iPad app.
<!DOCTYPE html>
<style type="text/css">
p.clear {
clear:both;
}
img.newsPhoto {
border-radius: 3px;
border: 3px solid #fff;
box-shadow: 0px 2px 2px #888888;
}
img.shareButton {
margin-top: 4px;
margin-right: 8px;
}
</style>
<div style="float: left;">
<img class="newsPhoto" src="%@" width="264" height="142">
<br>
<img class="shareButton" src="%@" width="60" height="60">
<img class="shareButton" src="%@" width="60" height="60">
<img class="shareButton" src="%@" width="60" height="60">
</div>
<p>%@</p>
<p class="clear">%@</p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment