Advertisement
inqw

Untitled

Jul 26th, 2017
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.70 KB | None | 0 0
  1. {% extends "base.html" %}
  2.  
  3. {% block title %} Welcome to Reddit Subnet {% endblock %}
  4.  
  5. {% block header %}
  6.  
  7.     <div class='throbber'>
  8.         <div class='innerthrobber'></div>
  9.     </div>
  10.     <a href='javascript:login()'>log in</a>
  11.  
  12. {% endblock %}
  13.  
  14. {% block content %}
  15.  
  16.     <div id='content'>
  17.         <canvas id='tesselation'></canvas>
  18.         <div id='biglogo' class='logo'></div>
  19.     </div>
  20.  
  21.     <div id='innerwrapper' style='margin-top: 20em'>
  22.         <div class='item'>
  23.             <div id='crown'>
  24.                 <h2>Welcome to Subnet!</h2>
  25.                 <p>New to our site? Take a look at what we have to offer!</p>
  26.                 <div class='bluebar'></div>
  27.             </div>
  28.             <div class='tree'>
  29.                 <p>
  30.                     <svg viewBox="0 0 30 10">
  31.                         <path d="M5 5 l25 0"></path>
  32.                         <circle cx="5" cy="5" r="3"></circle>
  33.                     </svg>
  34.                     <b>Lots of bots</b>
  35.                     <br>
  36.                     <span>
  37.                         Subnet is devoted to providing a wide assortment of bot services made by and written for reddit mods.
  38.                     </span>
  39.                 </p>
  40.                 <p>
  41.                     <svg viewBox="0 0 30 10">
  42.                         <path d="M5 5 l25 0"></path>
  43.                         <circle cx="25" cy="5" r="3"></circle>
  44.                     </svg>
  45.                     <b>
  46.                         Everything in one place
  47.                     </b>
  48.                     <br>
  49.                     <span>
  50.                         This site is the hub for all our bots, and all of them can be conviently set up and configured from here
  51.                     </span>
  52.                 </p>
  53.                 <p>
  54.                     <svg viewBox="0 0 30 10">
  55.                         <path d="M5 5 l25 0"></path>
  56.                         <circle cx="5" cy="5" r="3"></circle>
  57.                     </svg>
  58.                     <b>
  59.                     In development
  60.                     </b>
  61.                     <br>
  62.                     <span>
  63.                         Subnet is in constant development. New features are constantly being worked on to make your life easier
  64.                     </span>
  65.                 </p>
  66.                 <p>
  67.                     <svg viewBox="0 0 30 10">
  68.                         <path d="M5 5 l25 0"></path>
  69.                         <circle cx="25" cy="5" r="3"></circle>
  70.                     </svg>
  71.                     <b>Pretty cheap</b>
  72.                     <br>
  73.                     <span>
  74.                         Prices for our services start (and end) at $0, and it will remain that way. You've got nothing to lose!
  75.                     </span>
  76.                 </p>
  77.                 <p>
  78.                     <svg viewBox="0 0 30 10">
  79.                         <path d="M5 5 l25 0"></path>
  80.                         <circle cx="5" cy="5" r="3"></circle>
  81.                     </svg>
  82.                     <b>Just start</b>
  83.                     <br>
  84.                     <span>
  85.                         Feel excited about our service? Starting your use of this site is as easy as clicking a button, so just do it!
  86.                     </span>
  87.                 </p>
  88.                 <div class='stem'></div>
  89.             </div>
  90.             <div class='center'>
  91.                 <a class='buttonesque' href='javascript:login()'>Log in with Reddit!</a>
  92.             </div>
  93.         </div>
  94.     </div>
  95.  
  96. {% endblock %}
  97.  
  98. {% block scripts %}
  99.     {% load staticfiles %}
  100.     <script src='{% static "/js/tesselate.js" %}'></script>
  101.     <script type='text/javascript'>createSVG(document.getElementById("biglogo"),"0 0 195 50",logoCoords,size);</script>
  102.     <script type='text/javascript'>init();</script>
  103. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement