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