github.com/mssola/todo@v0.0.0-20181029153210-d25348dc3f48/views/application/layout.tpl (about) 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> 5 <title>todo</title> 6 <link rel="icon" sizes="196x196" href="/images/icon.png?v=0"> 7 <link href="/stylesheets/vendor/normalize.min.css" rel="stylesheet" type="text/css" /> 8 <link href="/stylesheets/{{ view }}.css" rel="stylesheet" type="text/css" /> 9 {{if .Print}} 10 <script src="/javascripts/print.js"></script> 11 {{else}} 12 {{if .JS}} 13 <script src="/javascripts/{{ .JS }}.js"></script> 14 {{end}} 15 {{end}} 16 </head> 17 <body> 18 {{if .Print}} 19 <article style="background-color: white"> 20 {{else}} 21 <article> 22 {{end}} 23 {{ yield }} 24 </article> 25 </body> 26 </html>