github.com/jd-ly/tools@v0.5.7/godoc/static/godoc.html (about) 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 5 <meta name="viewport" content="width=device-width, initial-scale=1"> 6 <meta name="theme-color" content="#375EAB"> 7 {{with .Tabtitle}} 8 <title>{{html .}} - Go Documentation Server</title> 9 {{else}} 10 <title>Go Documentation Server</title> 11 {{end}} 12 <link type="text/css" rel="stylesheet" href="/lib/godoc/style.css"> 13 {{if .TreeView}} 14 <link rel="stylesheet" href="/lib/godoc/jquery.treeview.css"> 15 {{end}} 16 <script>window.initFuncs = [];</script> 17 <script src="/lib/godoc/jquery.js" defer></script> 18 {{if .TreeView}} 19 <script src="/lib/godoc/jquery.treeview.js" defer></script> 20 <script src="/lib/godoc/jquery.treeview.edit.js" defer></script> 21 {{end}} 22 23 {{if .Playground}} 24 <script src="/lib/godoc/playground.js" defer></script> 25 {{end}} 26 {{with .Version}}<script>var goVersion = {{printf "%q" .}};</script>{{end}} 27 <script src="/lib/godoc/godocs.js" defer></script> 28 </head> 29 <body> 30 31 <div id='lowframe' style="position: fixed; bottom: 0; left: 0; height: 0; width: 100%; border-top: thin solid grey; background-color: white; overflow: auto;"> 32 ... 33 </div><!-- #lowframe --> 34 35 <div id="topbar"{{if .Title}} class="wide"{{end}}><div class="container"> 36 <div class="top-heading" id="heading-wide"><a href="/pkg/">Go Documentation Server</a></div> 37 <div class="top-heading" id="heading-narrow"><a href="/pkg/">GoDoc</a></div> 38 <a href="#" id="menu-button"><span id="menu-button-arrow">▽</span></a> 39 <form method="GET" action="/search"> 40 <div id="menu"> 41 {{if (and .Playground .Title)}} 42 <a id="playgroundButton" href="http://play.golang.org/" title="Show Go Playground">Play</a> 43 {{end}} 44 <span class="search-box"><input type="search" id="search" name="q" placeholder="Search" aria-label="Search" required><button type="submit"><span><!-- magnifying glass: --><svg width="24" height="24" viewBox="0 0 24 24"><title>submit search</title><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/><path d="M0 0h24v24H0z" fill="none"/></svg></span></button></span> 45 </div> 46 </form> 47 48 </div></div> 49 50 {{if .Playground}} 51 <div id="playground" class="play"> 52 <div class="input"><textarea class="code" spellcheck="false">package main 53 54 import "fmt" 55 56 func main() { 57 fmt.Println("Hello, 世界") 58 }</textarea></div> 59 <div class="output"></div> 60 <div class="buttons"> 61 <a class="run" title="Run this code [shift-enter]">Run</a> 62 <a class="fmt" title="Format this code">Format</a> 63 {{if not $.GoogleCN}} 64 <a class="share" title="Share this code">Share</a> 65 {{end}} 66 </div> 67 </div> 68 {{end}} 69 70 <div id="page"{{if .Title}} class="wide"{{end}}> 71 <div class="container"> 72 73 {{if or .Title .SrcPath}} 74 <h1> 75 {{html .Title}} 76 {{html .SrcPath | srcBreadcrumb}} 77 </h1> 78 {{end}} 79 80 {{with .Subtitle}} 81 <h2>{{html .}}</h2> 82 {{end}} 83 84 {{with .SrcPath}} 85 <h2> 86 Documentation: {{html . | srcToPkgLink}} 87 </h2> 88 {{end}} 89 90 {{/* The Table of Contents is automatically inserted in this <div>. 91 Do not delete this <div>. */}} 92 <div id="nav"></div> 93 94 {{/* Body is HTML-escaped elsewhere */}} 95 {{printf "%s" .Body}} 96 97 <div id="footer"> 98 Build version {{html .Version}}.<br> 99 Except as <a href="https://developers.google.com/site-policies#restrictions">noted</a>, 100 the content of this page is licensed under the 101 Creative Commons Attribution 3.0 License, 102 and code is licensed under a <a href="/LICENSE">BSD license</a>.<br> 103 <a href="/doc/tos.html">Terms of Service</a> | 104 <a href="http://www.google.com/intl/en/policies/privacy/">Privacy Policy</a> 105 </div> 106 107 </div><!-- .container --> 108 </div><!-- #page --> 109 </body> 110 </html>