-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (44 loc) · 1.49 KB
/
index.html
File metadata and controls
45 lines (44 loc) · 1.49 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
---
layout: page
title: 日志
tagline: 关于bilibili弹幕播放器的技术文档及消息
---
{% include JB/setup %}
<div class="row">
<div class="span8">
{% for post in site.posts %}
<div style="margin-bottom: 3em;">
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
<hr style="margin: 0.5em 0;" />
<p class="text-right">{% if post.author %}{{ post.author }} / {% endif %}{{ post.date | date: "%Y年%m月%d日" }}</p>
{{ post.content | split:'<!-- break -->' | first }}
{% if post.content contains '<!-- break -->' %}
<a href="{{ BASE_PATH }}{{ post.url }}">(继续阅读)…</a>
{% endif %}
</div>
{% endfor %}
</div>
<div class="span4">
<h4><a href="/about.html">关于 / About</a></h4>
<h4><a href="/tools.html">弹幕制作工具</a></h4>
<ul>
<li><strong>弹幕塚</strong> - 离线开发环境</li>
<li><strong>DanmakuHelper</strong> - 绘画临摹工具</li>
<li><strong>SVG2BiliScript</strong> - 导入SVG</li>
<li><strong>SVG to Motifs Parser</strong> - 导入SVG</li>
<li><strong>BitmapTool</strong> - 导入图像</li>
</ul>
<h4><a href="/categories.html">日志分类</a></h4>
<h4><a href="/archive.html">日志存档</a></h4>
<h4><a href="/atom.xml">订阅 Atom 1.0 XML</a></h4>
<hr />
<h4>播放器更新历史</h4>
<ul>
{% for post in site.posts %}
{% if post.category == 'update' %}
<li>{{ post.content | split:'<!-- break -->' | first }}</li>
{% endif %}
{% endfor %}
</ul>
</div>
</div>