Guest User

Untitled

a guest
Nov 24th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.52 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.   <head>
  4.     <title>Posts</title>
  5.       </head>
  6.   <body>
  7. <div id="header">
  8.   <div id="logo">
  9.     <h1>
  10.       Logo
  11.     </h1>
  12.  
  13.   </div>
  14. </div>
  15. <h1>Blog posts</h1>
  16. <a href="/posts/add">Add Post</a><table>
  17.   <tr>
  18.     <th>Id</th>
  19.     <th>Title</th>
  20.     <th>Actions</th>
  21.  
  22.     <th>Created</th>
  23.   </tr>
  24.   <tr>
  25.     <td>1</td>
  26.     <td><a href="/posts/view/1">The title</a></td>
  27.     <td>
  28.       <a href="/posts/delete/1" onclick="return confirm(&#039;Are you sure?&#039;);">Delete</a>      <a href="/posts/edit/1">Edit</a>    </td>
  29.  
  30.     <td>2011-09-12 17:47:46</td>
  31.   </tr>
  32.   <tr>
  33.     <td>2</td>
  34.     <td><a href="/posts/view/2">A title once again</a></td>
  35.     <td>
  36.       <a href="/posts/delete/2" onclick="return confirm(&#039;Are you sure?&#039;);">Delete</a>      <a href="/posts/edit/2">Edit</a>    </td>
  37.  
  38.     <td>2011-09-12 17:47:46</td>
  39.   </tr>
  40.   <tr>
  41.     <td>3</td>
  42.     <td><a href="/posts/view/3">Title strikes back</a></td>
  43.     <td>
  44.       <a href="/posts/delete/3" onclick="return confirm(&#039;Are you sure?&#039;);">Delete</a>      <a href="/posts/edit/3">Edit</a>    </td>
  45.  
  46.     <td>2011-09-12 17:47:46</td>
  47.   </tr>
  48. </table>
  49.   <div id="menu">
  50.     <ul>
  51.       <li>Menu Item One</li>
  52.       <li>Second Thing on Navigation</li>
  53.       <li>List Element Three</li>
  54.  
  55.     </ul>
  56.   </div>
  57. <div id="footer">
  58.   <div id="sitemap">
  59.     Site map
  60.   </div>
  61.   <div id="activity">
  62.     Recent activity
  63.   </div>
  64.   <div id="contact">
  65.  
  66.     Contact information
  67.   </div>
  68. </div>
  69.   </body>
  70. </html>
Add Comment
Please, Sign In to add comment