header.html 1.2 KB

1234567891011121314151617181920212223242526272829
  1. {{define "header"}}
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
  4. <head>
  5. <meta content="text/html; charset=utf-8" http-equiv="content-type" />
  6. <meta name="title" content="保存サイト" />
  7. <meta name="description" content="世界初FOSS系ウエブアーカイバーです。" />
  8. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  9. <title>保存サイト〜{{.Tit}}</title>
  10. <link rel="icon" type="image/x-icon" href="/static/favicon.ico" />
  11. <link rel="stylesheet" type="text/css" href="/static/style.css" />
  12. </head>
  13. <body>
  14. <h1>
  15. <img class="headerimg" src="/static/logo.jpg" alt="{{if eq .Lan "ja"}}ロゴ{{else}}Logo{{end}}" />
  16. </h1>
  17. <div class="body">
  18. <p>
  19. <a href="/">{{if eq .Lan "ja"}}トップ{{else}}Top{{end}}</a>
  20. </p>
  21. <form method="post" action="/">
  22. <div class="switchlang">
  23. <input class="langchange" type="submit" name="langchange" value="{{if eq .Lan "ja"}}Change to English{{else}}日本語に変更する{{end}}" />
  24. </div>
  25. </form>
  26. <hr />
  27. <div class="central">
  28. {{end}}