-
Notifications
You must be signed in to change notification settings - Fork 35
/
index.html
51 lines (41 loc) · 1.81 KB
/
index.html
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
---
layout: default
---
<div class="home">
<p>ここは、<a href="http://martinfowler.com/bliki/">Martin Fowler's Bliki</a>の日本語翻訳サイトです。Martin Fowler氏本人の許可を得て公開しています。データは<a href="https://github.com/bliki-ja/bliki-ja.github.io">GitHubで管理</a>していますので、どなたでも翻訳に参加することが可能です。</p>
<p>※現在、移行中につき、Markdown形式になっていないものが多々あります……。PRいただけると大変ありがたいです。</p>
<img src="/images/bliki_ja_mfsig.gif" />
<p class="toc">
{% capture tagNames %}{% for tag in site.tags %}{{ tag[0] }}{% unless forloop.last %},{% endunless %}{% endfor %}{% endcapture %}
{% assign sortedTagNames = tagNames | split:',' | sort %}
{% for tag in sortedTagNames %}<a href="#tag_{{ tag }}">{{ tag }}</a> / {% endfor %}
</p>
<h1 id="articles">article</h1>
<ul>
{% for page in site.pages %}
{% if page.dir contains 'pofeaa' %}
{% else %}
{% if page.title %}{% if page.dir != '/' and page.dir != '/tags/' and page.dir != '/hot/' %}
<li><a class="page-link" href="{{ page.dir | prepend: site.baseurl }}">{{ page.title }}</a></li>
{% endif %}{% endif %}{% endif %}
{% endfor %}
</ul>
{% for tag in sortedTagNames %}
<h1 id="tag_{{ tag }}">{{ tag }}</h1>
<ul>
{% for post in site.tags[tag] %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
{% endfor %}
<!-- post without tag -->
<h1 id="no-tag">without tags</h1>
<ul>
{% for post in site.posts %}
{% if post.tags.size == 0 %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endif %}
{% endfor %}
</ul>
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
</div>