-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve localization, add ja translation links
- Loading branch information
Showing
8 changed files
with
87 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,54 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta http-equiv="X-UA-Compatible" content="chrome=1"> | ||
<meta http-equiv="X-UA-Compatible" content="chrome=1" /> | ||
<link rel="shortcut icon" href="/public/hginit.png" /> | ||
<link rel="apple-touch-icon" href="/public/hginit.png" /> | ||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | ||
<title>HgInit: {{page.title}}</title> | ||
<meta name="og:description" content="{{page.description}}"/> | ||
<meta name="og:description" content="{{page.description}}" /> | ||
<meta name="description" content="{{page.description}}" /> | ||
<link href="public/styles.css" rel="stylesheet" type="text/css" /> | ||
<meta name="language" content="en"> | ||
<meta name="author" content="Joel Spolsky"> | ||
<meta name="copyright" content="Joel Spolsky"> | ||
<meta name="og:title" content="The Rock"/> | ||
<meta name="og:url" content="{{site.url}}/{{page.url}}"/> | ||
<meta name="og:image" content="{{site.url}}/public/hginit.png"/> | ||
<link rel='start' title='HgInit' href='{{site.url}}/index.html' /> | ||
{% if page.previous %}<link rel='prev' href='{{site.url}}/{{page.previous}}' />{% endif %} | ||
{% if page.next %}<link rel='next' href='{{site.url}}/{{page.next}}' />{% endif %} | ||
<meta name="language" content="en" /> | ||
<meta name="author" content="Joel Spolsky" /> | ||
<meta name="copyright" content="Joel Spolsky" /> | ||
<meta name="og:title" content="The Rock" /> | ||
<meta name="og:url" content="{{site.url}}/{{page.url}}" /> | ||
<meta name="og:image" content="{{site.url}}/public/hginit.png" /> | ||
<link rel="start" title="HgInit" href="{{site.url}}/index.html" /> | ||
{% if page.previous %} | ||
<link rel="prev" href="{{site.url}}/{{page.previous}}" /> | ||
{% endif %} {% if page.next %} | ||
<link rel="next" href="{{site.url}}/{{page.next}}" /> | ||
{% endif %} | ||
<link rel="alternate" href="{{site.url}}/{{page.url}}" hreflang="en" /> | ||
<link rel="alternate" href="{{page.alternate.zh}}" hreflang="zh" /> | ||
<link rel="alternate" href="{{page.alternate.ja}}" hreflang="ja" /> | ||
</head> | ||
<body> | ||
<div class="toptop" align="left"> | ||
<ul> | ||
<li><a href="https://github.com/hginit/hginit.github.io">Source</a></li> | ||
<li><a href="https://zh-hginit.readthedocs.org">中文版</a></li> | ||
<li><a href="https://www.joelonsoftware.com/">Joel on Software</a></li> | ||
<li><a href="https://www.mercurial-scm.org">Mercurial</a></li> | ||
<li><a href="index.html">Home</a></li> | ||
</ul> | ||
</div> | ||
<div id="dropshadow"></div> | ||
<div class="toptop" align="left"> | ||
<ul> | ||
<li><a href="https://github.com/hginit/hginit.github.io">Source</a></li> | ||
<li> | ||
<a href="https://zh-hginit.readthedocs.org" hreflang="zh">中文版</a> | ||
</li> | ||
<li> | ||
<a | ||
href="https://mmitou.hatenadiary.org/entry/20100501/1272680474" | ||
hreflang="ja" | ||
>日本語</a | ||
> | ||
</li> | ||
<li><a href="https://www.joelonsoftware.com/">Joel on Software</a></li> | ||
<li><a href="https://www.mercurial-scm.org">Mercurial</a></li> | ||
<li><a href="index.html">Home</a></li> | ||
</ul> | ||
</div> | ||
<div id="dropshadow"></div> | ||
<div class="main"> | ||
<!-- content starts --> | ||
{{content}} | ||
<!-- content ends --> | ||
</div> | ||
<!-- content starts --> | ||
{{content}} | ||
<!-- content ends --> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters