Created
November 2, 2011 15:35
-
-
Save SpacyRicochet/1333955 to your computer and use it in GitHub Desktop.
Quick and dirty html template for news articles in iPad app.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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