Skip to content

Commit f4f956c

Browse files
committed
readd index.html redirecting to blogger. for people that can't view blogger keep blog.html to use github pages
1 parent 9fa1aef commit f4f956c

File tree

2 files changed

+37
-13
lines changed

2 files changed

+37
-13
lines changed

blog.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
layout: default
3+
title: MyBatis
4+
---
5+
6+
<div id="home">
7+
<h1>Blog Posts</h1>
8+
<ul class="posts">
9+
{% for post in site.posts %}
10+
<li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ post.url }}">{{ post.title }}</a></li>
11+
{% endfor %}
12+
</ul>
13+
</div>

index.html

Lines changed: 24 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,24 @@
1-
---
2-
layout: default
3-
title: MyBatis
4-
---
5-
6-
<div id="home">
7-
<h1>Blog Posts</h1>
8-
<ul class="posts">
9-
{% for post in site.posts %}
10-
<li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ post.url }}">{{ post.title }}</a></li>
11-
{% endfor %}
12-
</ul>
13-
</div>
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2+
<html xmlns="http://www.w3.org/1999/xhtml">
3+
<head>
4+
<meta http-equiv="refresh" content="0;url=http://blog.mybatis.org/">
5+
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
6+
<title>mybatis</title>
7+
<meta name="keywords" content="mybatis, ibatis, database, data, mapper, ORM, Java, .NET"/>
8+
<meta name="description" content="mybatis data mapping framework for Java and .NET"/>
9+
<link href="default.css" rel="stylesheet" type="text/css"/>
10+
</head>
11+
<body>
12+
<div id="wrapper">
13+
<div id="header">
14+
<div id="logo">
15+
<img src="images/logo.png">
16+
</div>
17+
</div>
18+
<div id="footer-wrapper" style="text-align:center;font-weight:bold">
19+
<div id="footer">
20+
Redirecting... <a href="http://blog.mybatis.org">or click here</a>.
21+
</div>
22+
</div>
23+
</body>
24+
</html>

0 commit comments

Comments
 (0)