github.com/aleksi/gonuts.io@v0.0.0-20130622121132-3b0f2d1999fb/app/gonuts/templates/base.html (about) 1 <!DOCTYPE html> 2 <html> 3 <head profile="http://a9.com/-/spec/opensearch/1.1/"> 4 <link rel="search" type="application/opensearchdescription+xml" href="/-/public/opensearch.xml" 5 title="gonuts.io" /> 6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 7 {{with .Tabtitle}} 8 <title>{{.}} - Go Nuts</title> 9 {{else}} 10 <title>Go Nuts</title> 11 {{end}} 12 <link type="text/css" rel="stylesheet" href="/-/public/style.css"> 13 <script type="text/javascript" src="/-/public/search.js"></script> 14 15 <script type="text/javascript"> 16 var _gaq = _gaq || []; 17 _gaq.push(['_setAccount', 'UA-35077898-1']); 18 _gaq.push(['_setDomainName', 'gonuts.io']); 19 _gaq.push(['_trackPageview']); 20 21 (function() { 22 var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; 23 ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; 24 var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); 25 })(); 26 </script> 27 </head> 28 29 <body> 30 <div id="topbar"> 31 <div class="container{{if .Title}} wide{{end}}"> 32 33 <form method="GET" action="/-/nuts"> 34 <div id="menu"> 35 <a href="/-/nuts">All Nuts</a> 36 <a href="/-/me">Me</a> 37 <a href="/-/doc">Documents</a> 38 <a href="/-/about">About</a> 39 <input type="text" id="search" name="q" class="inactive" value="Search"> 40 </div> 41 <div id="heading"><a href="/">Go Nuts – package manager</a></div> 42 </form> 43 44 </div> 45 </div> 46 47 <div id="page"{{if .Title}} class="wide"{{end}}> 48 49 {{with .Title}} 50 <h1>{{.}}</h1> 51 {{end}} 52 {{with .Subtitle}} 53 <h2>{{.}}</h2> 54 {{end}} 55 56 {{.Content}} 57 58 </div> 59 60 <div id="footer"> 61 The content of this page is licensed under the <a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0 License</a>, and <a href="https://github.com/AlekSi/gonuts.io">code</a> is licensed under a <a href="https://github.com/AlekSi/gonuts.io/blob/master/LICENSE">BSD license</a>. 62 </div> 63 </body> 64 65 </html>