-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathen.html
More file actions
101 lines (96 loc) · 2.9 KB
/
Copy pathen.html
File metadata and controls
101 lines (96 loc) · 2.9 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
---
layout: skeleton
---
<header id="header">
<div class="title">
<a href="/">
<span class="project">Groonga</span>
<span class="separator">-</span>
<span class="description">{{ page.title }}</span>
</a>
</div>
<nav>
<ul>
<li><a href="/docs/">Documentation</a></li>
<li><a href="/publication/">Publication</a></li>
<li><a href="/users/">Users</a></li>
<li><a href="/related-projects.html">Related projects</a></li>
<li><a href="/docs/community.html">Community</a></li>
<li><a href="/support/">Support</a></li>
<li><a href="/blog/">Blog</a></li>
<li><a href="/docs/contribution.html">Developers</a></li>
</ul>
</nav>
<div class="facebook-buttons">
<fb:like href="//www.facebook.com/groonga"
layout="standard"
width="290"></fb:like>
</div>
<div class="other-language-links">
<ul>
{% capture relative_url %}
{% if page.relative_url %}
/{{ page.relative_url }}
{% else %}
{{ page.url | remove_first:'en/' | remove:'index.html' }}
{% endif %}
{% endcapture %}
<li><a href="/ja{{ relative_url | remove:' ' | strip_newlines }}" title="日本語">日本語</a></li>
</ul>
</div>
</header>
{% if page.no_sidebar %}
{{ content }}
{% else %}
<div id="body">
{% capture title_heading %}
{% if page.heading %}
{{ page.heading }}
{% else %}
{{ page.title }}
{% endif %}
{% endcapture %}
<h1 id="title">
{% if page.heading_link %}
<a href="{{ page.heading_link }}">
{{ title_heading | strip_newlines }}
</a>
{% else %}
{{ title_heading | strip_newlines }}
{% endif %}
</h1>
<div id="content">
{{ content }}
</div>
<div id="sidebar">
<h2>Links</h2>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/docs/">Documentation</a></li>
<li><a href="/publication/">Publication</a></li>
<li><a href="/users/">Users</a></li>
<li><a href="/related-projects.html">Related projects</a></li>
<li><a href="/docs/community.html">Community</a></li>
<li><a href="/docs/contribution.html">Contribution</a></li>
<li><a href="/logo/">Logo</a></li>
<li><a href="/sticker/">Sticker</a></li>
<li><a href="/blog/">Blog</a></li>
</ul>
<h2>The Latest Posts</h2>
<ul>
{% for post in site.posts %}
{% if post.categories contains "en" %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
<span class="date">({{ post.date | date: "%Y-%m-%d" }})</span>
</li>
{% endif %}
{% endfor %}
</ul>
</div>
</div>
{% endif %}
<footer id="footer">
<address>© 2011-{{ site.time | date: "%Y" }} Groonga Project</address>
<p class="license">Groonga is released under <a href="//www.opensource.org/licenses/lgpl-2.1.php">the GNU Lesser General Public License version 2.1</a>.</p>
</footer>