github.com/keysonZZZ/kmg@v0.0.0-20151121023212-05317bfd7d39/kmgView/kmgBootstrap/tplWrap.gotplhtml (about)

     1  <? package kmgBootstrap
     2  func tplWrap (w Wrap) string { ?>
     3  <!doctype html>
     4  <html lang="en">
     5  <head>
     6      <meta charset="UTF-8">
     7      <meta http-equiv="X-UA-Compatible" content="IE=edge">
     8      <meta name="viewport" content="width=device-width, initial-scale=1">
     9      <title><?= w.Title ?></title>
    10      <?= raw(w.Head.HtmlRender()) ?>
    11  </head>
    12  <body style="padding: 20px;">
    13  <?= raw(w.Body.HtmlRender()) ?>
    14  </body>
    15  </html>
    16  <? } ?>