github.com/marinho/drone@v0.2.1-0.20140504195434-d3ba962e89a7/pkg/template/pages/form.html (about) 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <meta name="author" content="Brad Rydzewski"> 6 <title>{{ template "title" . }}</title> 7 8 <link rel="shortcut icon" href="/img/favicon.png" /> 9 10 <!-- bootstrap styles --> 11 <link href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.0.3/css/bootstrap.min.css" rel="stylesheet" type="text/css" /> 12 13 <!-- drone bootstrap theme --> 14 <link href="/css/drone.css" rel="stylesheet" type="text/css" /> 15 16 <!-- fonts --> 17 <link href="//fonts.googleapis.com/css?family=Orbitron" rel="stylesheet" /> 18 <link href="//fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" /> 19 <style> 20 body{background:#EEE;} 21 </style> 22 </head> 23 <body> 24 25 <form class="form-centered" method="POST"> 26 {{ template "content" . }} 27 </form> 28 29 <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script> 30 <script src="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.0.3/js/bootstrap.min.js"></script> 31 {{ template "script" . }} 32 </body> 33 </html>