Advertisement
Stosswalkinator

Django/HTML not working correctly

Jun 11th, 2014
328
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.59 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3.     <title>EAGLE Solutions Inc.</title>
  4.     <meta charset="utf-8" />
  5.     <link rel="stylesheet" href="stylesheet.css" type="text/css" />
  6.     <meta name="viewport content = width=device=width, initial=scale=1.0">
  7. </head>
  8.  
  9. <body class="body">
  10.     <header class="mainHead">
  11.         <img src="img/blk.jpg" width="700" height="144">
  12.     </header>
  13.  
  14.     <h1>Welcome, {{ user.first_name }}!</h1>
  15.     <br />
  16.     <h3>The hard part is over. What's your snag in finding a good data management source?</h3>
  17.  
  18.     <br />
  19.     <br />
  20.     <br />
  21.    
  22.     <div>
  23.     <!-- Pixel sizes and such are just estimates. Things will be figured out soon -->
  24.         <div class="mainContent1">
  25.             <div class="edgeData">
  26.                 <!-- I was just thinking we have a plain background color and then each fish is a different image -->
  27.                 <!-- The hook and water can be part of the background or something -->
  28.             <a href=": http://www.storagebyeagle.com/resources/cv/edgedataprotection.pdf"><img onmouseover="bigImg(this)" onmouseout="normalImg(this)" src="img/jellyfish.jpg" width="100" height="100"></a>
  29.             </div>
  30.             <div class="dataAnalysis">
  31.                 <a href="http://www.storagebyeagle.com/resources/cv/SimpanaContentStore.pdf"><img onmouseover="bigImg(this)" onmouseout="normalImg(this)" src="img/jellyfish.jpg" width="100" height="100"></a>
  32.             </div>
  33.             <div class="snapInteg">
  34.                 <a href="http://www.storagebyeagle.com/resources/cv/snapprotect.pdf"><img onmouseover="bigImg(this)" onmouseout="normalImg(this)" src="img/jellyfish.jpg" width="100" height="100"></a>
  35.             </div>
  36.         </div>
  37.         <!-- This next div will be on the right -->
  38.     <div class="mainContent2">
  39.             <div class="virtual">
  40.                 <a href="http://www.storagebyeagle.com/resources/cv/vmenvironments.pdf"><img onmouseover="bigImg(this)" onmouseout="normalImg(this)" src="img/jellyfish.jpg" width="100" height="100"></a>
  41.             </div>
  42.             <div class="compliance">
  43.                 <a href="http://www.storagebyeagle.com/resources/cv/ediscovery.pdf"><img onmouseover="bigImg(this)" onmouseout="normalImg(this)" src="img/jellyfish.jpg" width="100" height="100"></a>
  44.             </div>
  45.             <div class="integration">
  46.                 <a href="http://www.storagebyeagle.com/products/storage-software.html"><img onmouseover="bigImg(this)" onmouseout="normalImg(this)" src="img/jellyfish.jpg" width="100" height="100"></a>
  47.             </div>
  48.         </div>
  49.     </div>
  50. <br />
  51. <br />
  52. {% block content %}
  53.  
  54. {% if user.has_signed_up %}
  55. <p>Already signed up</p>
  56. {% else %}
  57. <p>Sign up for free EAGLE consulting!</p>
  58. {% endif %}
  59.  
  60. <br /><br />
  61. Device: {{device.id}}<br />
  62. Device IP: {{device.ip_address}}<br />
  63. User Agent: {{device.user_agent}}<br />
  64.  
  65. {% endblock %}
  66. </body>
  67. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement