Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.70 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <title>{Title}</title>
  4.     </head>
  5.     <style>
  6. body {
  7.     font-family: Arial, Helvetica, sans-serif;
  8.     font-size: 14;
  9.    }
  10. .top{
  11.     margin: 20;
  12.     color: #7a7a52;
  13.     text-align: center;
  14. }
  15. .list{
  16.     margin: auto;
  17.     width: 500px;
  18. }
  19. .image{
  20.     margin: 20 0;
  21.     width: 500px;
  22.     color: #7a7a52;
  23.     text-align: left;
  24.     }
  25. .back{
  26.     float: left;
  27.     text-align: left;
  28.     width: 100px;
  29.     padding: 5px;
  30. }
  31. .next{
  32.     float: right;
  33.     text-align: right;
  34.     width: 100px;
  35.     padding: 5px;
  36. }
  37. a:link {
  38.     color: #7a7a52;
  39.     text-decoration: none;
  40. }
  41. a:visited {
  42.     color: #3d3d29;
  43.     text-decoration: underline;
  44. }
  45. a:active {
  46.     color: #3d3d29;
  47.     text-decoration: underline;
  48. }        
  49. </style>
  50. <body>
  51.     <div class="top">
  52.         <a>{Title}</a>
  53.     </div>  
  54.     <div class="list">
  55.            
  56.             {block:Posts}<ul style="list-style-type:none">
  57.             <div class="image">
  58.             {block:Photo}{block:HighRes}
  59.                 <a href="{PhotoURL-HighRes}" target="_blank">
  60.                 <img src="{PhotoURL-500}" alt="image"></a>
  61.             {/block:HighRes}{/block:Photo}
  62.                 {block:Date}{Year}/{MonthNumberWithZero}/{DayOfMonthWithZero}
  63.                     {/block:Date}
  64.             </div></ul>{/block:Posts}
  65.                
  66.                 <div class="back">
  67.                 {block:PreviousPage}
  68.                     <a href="{PreviousPage}">back</a>
  69.                     {/block:PreviousPage}</div>
  70.                
  71.                 <div class="next">{block:NextPage}
  72.                     <a href="{NextPage}">next</a>
  73.                     {/block:NextPage}</div>
  74.     </div>  
  75. </body>
  76. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement