-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.html.ja
73 lines (73 loc) · 2.27 KB
/
template.html.ja
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="ja" xml:lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rev="made" href="mailto:[email protected]" />
<link rel="stylesheet" href="<%= css %>" type="text/css" />
<% if css_content %>
<style type="text/css">
<%= css_content %>
</style>
<% end %>
<% if javascript_src %>
<script type="text/javascript" src="<%= javascript_src %>"></script>
<% end %>
<title><%= title %></title>
</head>
<body>
<% if not navi == "false" %>
<div class="navi"><a href="<%= rootdir %>">HOME</a> >
<% subject_path.each do |label, path| %>
<a class="subject" href="<%= path %>"><%= label %></a> >
<% end %>
<%= title_short( true ) %>
</div>
<% end %>
<ul id="navi">
<li><a href="help.html">ふわっと関連検索とは</a></li>
<li><a href="history.html">更新履歴</a></li>
</ul>
<% if date_available %>
<div class="last-update">初版公開日: <%= date_available.strftime( date_format ) %></div>
<% end %>
<% if date_modified %>
<div class="last-update">最終更新日: <%= date_modified.strftime( date_format ) %></div>
<% end %>
<% if lang_switch.size > 1 %>
<ul id="interlang">
<% @conf["interlang"].keys.each do |lang| %>
<li id="il-<%= lang %>"><%= lang == @lang ? "" : "<a href=\"#{lang_file( lang )}\">" %><%= @conf["interlang"][lang] %><%= lang == @lang ? "" : %q[</a>] %></li>
<% end %>
</ul>
<% end %>
<h1><%= title %></h1>
<%= body %>
<hr />
<% if not navi == "false" %>
<div class="navi"><a href="<%= rootdir %>">HOME</a> >
<% subject.to_a.each do |category| %>
<% label = subject_label[category] || category %>
<a class="subject" href="<%= rootdir %>/<%= category %>/"><%= label %></a> >
<% end %>
<% if title_short %>
<%= title_short %>
<% else %>
<%= title %>
<% end %>
</div>
<% end %>
<div id="footer">
<address>高久雅生 (Masao Takaku)<br />
<a href="http://masao.jpn.org/">http://masao.jpn.org/</a>,
<a href="mailto:[email protected]">[email protected]</a></address>
</div>
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-389547-4";
urchinTracker();
</script>
</body>
</html>