github.com/deliveroo/gqlgen@v0.7.2/docs/layouts/_default/baseof.html (about)

     1  <!DOCTYPE html>
     2  <html>
     3  
     4  <head {{ with .Site.LanguageCode }}lang="{{ . }}" {{ end }}>
     5  	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
     6  	<meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9" /> {{- if .Params.description }}
     7  	<meta name="description" content="{{ .Params.description }}"> {{- else }}
     8  	<meta name="description" content="{{ .Site.Params.description }}"> {{- end }}
     9  
    10  	<title>{{ if not .IsHome }}{{ .Title }} &mdash;{{ end }} {{ .Site.Title }}</title>
    11  
    12  	<link href="https://fonts.googleapis.com/css?family=Roboto:400,400i,700|Source+Code+Pro:400,700|Work+Sans:600,700" rel="stylesheet">
    13  	<link rel="stylesheet" href="{{ .Site.BaseURL }}main.css?v=3" type="text/css" />
    14  	<link rel="stylesheet" href="{{ .Site.BaseURL }}syntax.css?v=2" type="text/css" />
    15  
    16  	<!-- Global site tag (gtag.js) - Google Analytics -->
    17  	<script async src="https://www.googletagmanager.com/gtag/js?id=UA-116208894-2"></script>
    18  	<script>
    19  		window.dataLayer = window.dataLayer || [];
    20  		function gtag() { dataLayer.push(arguments); }
    21  		gtag('js', new Date());
    22  
    23  		gtag('config', 'UA-116208894-2');
    24  	</script>
    25  	<script src="{{ .Site.BaseURL }}main.js?v=1" async></script>
    26  
    27  </head>
    28  
    29  <body>
    30  	{{ partial "sidebar" . }} {{ block "main" . }}{{ end }}
    31  	<footer>
    32  		&copy; {{ now.Format "2006" }}
    33  		<a href="https://github.com/vektah">Adam Scarr</a>
    34  	</footer>
    35  </body>
    36  
    37  </html>