SVNからのミラー
This commit is contained in:
32
view/header.html
Normal file
32
view/header.html
Normal file
@@ -0,0 +1,32 @@
|
||||
{{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="{{.T "hozonsite"}}" />
|
||||
<meta name="description" content="{{.T "desc"}}" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>{{.T "hozonsite"}}〜{{.T "top"}}</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="{{.T "logo"}}" />
|
||||
</h1>
|
||||
<div class="body">
|
||||
<p>
|
||||
<a href="/">{{.T "top"}}</a>
|
||||
</p>
|
||||
<form method="post" action="/">
|
||||
<div class="central">
|
||||
<select class="langchange" name="lang">
|
||||
<option value="ja"{{if eq .Lan "ja"}} selected{{end}}>日本語</option>
|
||||
<option value="en"{{if eq .Lan "en"}} selected{{end}}>English</option>
|
||||
</select>
|
||||
<input class="langchange" type="submit" name="langchange" value="{{.T "langchange"}}" />
|
||||
</div>
|
||||
</form>
|
||||
<hr />
|
||||
<div class="central">
|
||||
{{end}}
|
||||
Reference in New Issue
Block a user