]> git.parisson.com Git - django-social-auth.git/commitdiff
Validation badges
authorMatías Aguirre <matiasaguirre@gmail.com>
Sun, 9 Jan 2011 15:16:54 +0000 (13:16 -0200)
committerMatías Aguirre <matiasaguirre@gmail.com>
Sun, 9 Jan 2011 15:16:54 +0000 (13:16 -0200)
example/templates/base.html

index 13d99c9c1b797fce682b1becd5969982b596571e..97a81f16d760dae211a02fc64ca66991e771b719 100644 (file)
@@ -25,6 +25,8 @@
       a.logout, .associated, .error {color: #c00;}
       #forkme {position: absolute; top: 0; right: 0;}
       #forkme img {border: 0;}
+      #valid-badges {position: absolute; bottom: 10px; left: 10px;}
+      #valid-badges p {display: inline;}
     </style>
   </head>
   <body>
     <div id="content">
       {% block content %}{% endblock %}
     </div>
+
+    <div id="valid-badges">
+      <p>
+        <a href="http://jigsaw.w3.org/css-validator/check/referer">
+          <img style="border:0;width:88px;height:31px" src="http://jigsaw.w3.org/css-validator/images/vcss-blue" alt="Valid CSS!" />
+        </a>
+      </p>
+      <p>
+        <a href="http://validator.w3.org/check?uri=referer">
+          <img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0 Strict" height="31" width="88" />
+        </a>
+      </p>
+    </div>
+
     <div><a id="forkme" href="http://github.com/omab/django-social-auth"><img src="http://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub" /></a></div>
   </body>
 </html>